You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2001/04/12 17:12:49 UTC

cvs commit: httpd-2.0/modules/dav/main config5.m4 config.m4

rbb         01/04/12 08:12:48

  Added:       modules/dav/main config5.m4
  Removed:     modules/dav/main config.m4
  Log:
  Make the dav/main config.m4 file be added to the configure script after
  httpd, and make dav default to no if http is not enabled.  Dav still
  defaults to yes if http is in the server.  Dav is incredibly HTTP centric,
  and makes little to no sense without HTTP
  
  Revision  Changes    Path
  1.1                  httpd-2.0/modules/dav/main/config5.m4
  
  Index: config5.m4
  ===================================================================
  dnl modules enabled in this directory by default
  
  APACHE_MODPATH_INIT(dav/main)
  
  dav_objects="mod_dav.lo props.lo util.lo util_lock.lo liveprop.lo providers.lo std_liveprop.lo"
  
  if test "$enable_http" = "no"; then
    dav_enable=no
  else
    dav_enable=most
  fi
  
  APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , $dav_enable)
  
  if test "$enable_dav" != "no"; then
    apache_need_expat=yes
  
    INCLUDES="$INCLUDES -I\$(top_srcdir)/$modpath_current"
  fi
  
  
  APACHE_MODPATH_FINISH