bjh         99/06/03 21:43:49

  Modified:    src/main http_main.c
  Log:
  Code to force linking of Expat shouldn't be in the shared core loader.
  
  Revision  Changes    Path
  1.443     +1 -1      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.442
  retrieving revision 1.443
  diff -u -r1.442 -r1.443
  --- http_main.c       1999/06/02 18:26:10     1.442
  +++ http_main.c       1999/06/04 04:43:45     1.443
  @@ -6520,7 +6520,7 @@
   #endif /* ndef SHARED_CORE_BOOTSTRAP */
   
   /* force Expat to be linked into the server executable */
  -#ifdef USE_EXPAT
  +#if defined(USE_EXPAT) && !defined(SHARED_CORE_BOOTSTRAP)
   #include "xmlparse.h"
   const XML_LChar *suck_in_expat(void);
   const XML_LChar *suck_in_expat(void)
  
  
  

Reply via email to