jim         97/10/24 12:35:17

  Modified:    src      Configure
  Log:
  Submitted by: Rasmus Lerdorf
  Reviewed by:  Jim, Martin, Dean
  Since AddModule may want to muck around with RULE_WANTHSREGEX, move
  the handling of RULE_WANTHSREGEX down past AddModule
  
  Revision  Changes    Path
  1.162     +10 -9     apachen/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/Configure,v
  retrieving revision 1.161
  retrieving revision 1.162
  diff -u -r1.161 -r1.162
  --- Configure 1997/10/21 06:41:07     1.161
  +++ Configure 1997/10/24 19:35:16     1.162
  @@ -667,15 +667,6 @@
   esac
   
   #
  -# Now HS's POSIX regex implementation if needed/wanted
  -#
  -if [ "$RULE_WANTHSREGEX" = "yes" ]; then
  -    REGLIB="regex/libregex.a"
  -    SUBDIRS="$SUBDIRS regex"
  -    INCLUDES_AUTODEPTH="$INCLUDES_AUTODEPTH regex"
  -fi
  -
  -#
   # Now SOCKS4.
   #  NOTE: We assume that if they are using SOCKS4, then they've
   #   adjusted EXTRA_LIBS and/or EXTRA_LDFLAGS as required,
  @@ -829,6 +820,16 @@
   done
   
   # $tmpfile now contains Module lines for all the modules we want
  +
  +#
  +# Now HS's POSIX regex implementation if needed/wanted. We do it
  +# now since AddModule may have changed it
  +#
  +if [ "$RULE_WANTHSREGEX" = "yes" ]; then
  +    REGLIB="regex/libregex.a"
  +    SUBDIRS="$SUBDIRS regex"
  +    INCLUDES_AUTODEPTH="$INCLUDES_AUTODEPTH regex"
  +fi
   
   # create modules.c
   
  
  
  

Reply via email to