akosut 97/07/03 13:27:41
Modified: src httpd.h
Log:
Change default server root to /apache on Windows
Reviewed by: Marc Slemko, Ken Coar
Revision Changes Path
1.125 +3 -0 apache/src/httpd.h
Index: httpd.h
===================================================================
RCS file: /export/home/cvs/apache/src/httpd.h,v
retrieving revision 1.124
retrieving revision 1.125
diff -c -C3 -r1.124 -r1.125
*** httpd.h 1997/07/02 03:38:30 1.124
--- httpd.h 1997/07/03 20:27:40 1.125
***************
*** 69,74 ****
--- 69,77 ----
#ifdef __EMX__
/* Set default for OS/2 file system */
#define HTTPD_ROOT "/os2httpd"
+ #elif defined(WIN32)
+ /* Set default for Windows file system */
+ #define HTTPD_ROOT "/apache"
#else
#define HTTPD_ROOT "/usr/local/etc/httpd"
#endif