manoj 99/09/20 13:34:44
Modified: src CHANGES src/main http_main.c Log: Add some compile-time flags to the output when -V is used for TPF Submitted by: David McCreedy <[EMAIL PROTECTED]> Revision Changes Path 1.1432 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1431 retrieving revision 1.1432 diff -u -d -u -r1.1431 -r1.1432 --- CHANGES 1999/09/19 21:28:35 1.1431 +++ CHANGES 1999/09/20 20:34:30 1.1432 @@ -1,5 +1,8 @@ Changes with Apache 1.3.10 + *) Add some compile-time flags to the output when -V is used for TPF + [David McCreedy <[EMAIL PROTECTED]>] + *) mod_auth_digest fixes: - Use unix-io instead of stdio to read /dev/random (fixes problems on FreeBSD) 1.476 +6 -0 apache-1.3/src/main/http_main.c Index: http_main.c =================================================================== RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v retrieving revision 1.475 retrieving revision 1.476 diff -u -d -u -r1.475 -r1.476 --- http_main.c 1999/09/07 20:47:23 1.475 +++ http_main.c 1999/09/20 20:34:37 1.476 @@ -3496,6 +3496,12 @@ #ifdef USE_SHMGET_SCOREBOARD printf(" -D USE_SHMGET_SCOREBOARD\n"); #endif +#ifdef USE_TPF_SCOREBOARD + printf(" -D USE_TPF_SCOREBOARD\n"); +#endif +#ifdef USE_TPF_DAEMON + printf(" -D USE_TPF_DAEMON\n"); +#endif #ifdef USE_OS2_SCOREBOARD printf(" -D USE_OS2_SCOREBOARD\n"); #endif