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...@locus.apache.org on 2000/07/01 16:02:54 UTC

cvs commit: apache-2.0/src/modules/dav/fs dbm.c lock.c repos.c

gstein      00/07/01 07:02:54

  Modified:    src/main util_xml.c
               src/modules/dav/fs dbm.c lock.c repos.c
  Log:
  no need for relative includes. the directories will be added to the
      compilation by the configure system.
  
  Revision  Changes    Path
  1.4       +1 -2      apache-2.0/src/main/util_xml.c
  
  Index: util_xml.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/util_xml.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- util_xml.c	2000/06/28 11:23:42	1.3
  +++ util_xml.c	2000/07/01 14:02:49	1.4
  @@ -58,8 +58,7 @@
   */
   
   /* James Clark's Expat parser */
  -/* ### need to fix this... */
  -#include "../lib/expat-lite/xmlparse.h"
  +#include "xmlparse.h"
   
   #include "httpd.h"
   #include "http_protocol.h"
  
  
  
  1.4       +3 -3      apache-2.0/src/modules/dav/fs/dbm.c
  
  Index: dbm.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/dbm.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- dbm.c	2000/06/28 11:23:44	1.3
  +++ dbm.c	2000/07/01 14:02:52	1.4
  @@ -74,11 +74,11 @@
   /* ### need to APR-ize */
   #include <fcntl.h>		/* for O_RDONLY, O_WRONLY */
   #include <sys/stat.h>           /* for S_IRUSR, etc */
  -/* ### ACK! fix this... */
  -#include "../../../lib/sdbm/sdbm.h"
  +
  +#include "sdbm.h"
   #endif
   
  -#include "../main/mod_dav.h"
  +#include "mod_dav.h"
   #include "repos.h"
   
   
  
  
  
  1.4       +2 -2      apache-2.0/src/modules/dav/fs/lock.c
  
  Index: lock.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/lock.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- lock.c	2000/06/28 11:23:44	1.3
  +++ lock.c	2000/07/01 14:02:52	1.4
  @@ -67,8 +67,8 @@
   #include "httpd.h"
   #include "http_log.h"
   
  -#include "../main/mod_dav.h"
  -#include "../main/dav_opaquelock.h"
  +#include "mod_dav.h"
  +#include "dav_opaquelock.h"
   #include "repos.h"
   
   
  
  
  
  1.4       +1 -1      apache-2.0/src/modules/dav/fs/repos.c
  
  Index: repos.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/repos.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- repos.c	2000/06/28 11:23:45	1.3
  +++ repos.c	2000/07/01 14:02:52	1.4
  @@ -71,7 +71,7 @@
   #include "http_protocol.h"	/* for ap_set_* (in dav_fs_set_headers) */
   #include "http_request.h"       /* for ap_update_mtime() */
   
  -#include "../main/mod_dav.h"
  +#include "mod_dav.h"
   #include "repos.h"