You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gs...@apache.org on 2001/02/07 10:44:11 UTC

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

gstein      01/02/07 01:44:11

  Modified:    modules/dav/main config.m4
  Log:
  $enable_dav can be one of: yes, shared, no. We want to adjust the INCLUDES
  if it is anything but no. (it wasn't getting set properly for "shared")
  
  Revision  Changes    Path
  1.13      +1 -1      httpd-2.0/modules/dav/main/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/dav/main/config.m4,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -u -r1.12 -r1.13
  --- config.m4	2000/11/23 12:50:31	1.12
  +++ config.m4	2001/02/07 09:44:11	1.13
  @@ -6,7 +6,7 @@
   
   APACHE_MODULE(dav, WebDAV protocol handling, $dav_objects, , no)
   
  -if test "$enable_dav" = "yes"; then
  +if test "$enable_dav" != "no"; then
     apache_need_expat=yes
   
     INCLUDES="$INCLUDES -I\$(top_srcdir)/$modpath_current"