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...@hyperreal.org on 1999/05/31 13:58:00 UTC

cvs commit: apache-1.3/src Configuration.tmpl Configure

gstein      99/05/31 04:57:59

  Modified:    src      Configuration.tmpl Configure
  Log:
  The directory has changed to lib/expat-lite/ to clarify that we are not
  using the full Expat distribution (suggested by Roy).
  
  Revision  Changes    Path
  1.115     +3 -3      apache-1.3/src/Configuration.tmpl
  
  Index: Configuration.tmpl
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/Configuration.tmpl,v
  retrieving revision 1.114
  retrieving revision 1.115
  diff -u -r1.114 -r1.115
  --- Configuration.tmpl	1999/05/25 11:28:39	1.114
  +++ Configuration.tmpl	1999/05/31 11:57:57	1.115
  @@ -162,9 +162,9 @@
   #
   # EXPAT:
   #  Include James Clark's Expat package into Apache, for use by the
  -#  modules. The "default" is to include it if the lib/expat/ directory
  -#  is present. This rule will always be interpreted as "no" if the
  -#  directory is not present.
  +#  modules. The "default" is to include it if the lib/expat-lite/
  +#  directory is present. This rule will always be interpreted as "no"
  +#  if the directory is not present.
   #
   
   Rule SOCKS4=no
  
  
  
  1.351     +4 -4      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.350
  retrieving revision 1.351
  diff -u -r1.350 -r1.351
  --- Configure	1999/05/25 12:24:44	1.350
  +++ Configure	1999/05/31 11:57:57	1.351
  @@ -1569,7 +1569,7 @@
   ####################################################################
   ## Add in the Expat library if needed/wanted.
   ##
  -if [ -d ./lib/expat/ ]; then
  +if [ -d ./lib/expat-lite/ ]; then
       if [ "x$RULE_EXPAT" = "xdefault" ]; then
           RULE_EXPAT=yes
       fi
  @@ -1582,9 +1582,9 @@
       fi
   fi
   if [ "x$RULE_EXPAT" = "xyes" ]; then
  -    EXPATLIB="lib/expat/libexpat.a"
  -    APLIBDIRS="expat $APLIBDIRS"
  -    CFLAGS="$CFLAGS -DUSE_EXPAT -I\$(SRCDIR)/lib/expat"
  +    EXPATLIB="lib/expat-lite/libexpat.a"
  +    APLIBDIRS="expat-lite $APLIBDIRS"
  +    CFLAGS="$CFLAGS -DUSE_EXPAT -I\$(SRCDIR)/lib/expat-lite"
   fi
   
   ####################################################################