jim         97/07/16 20:03:22

  Modified:    src       Configure
  Log:
  Show where, in Configure, one would use
  ./helpers/TestLib
  
  Revision  Changes    Path
  1.111     +21 -12    apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.110
  retrieving revision 1.111
  diff -C3 -r1.110 -r1.111
  *** Configure 1997/07/17 01:40:35     1.110
  --- Configure 1997/07/17 03:03:20     1.111
  ***************
  *** 632,647 ****
    fi
    
    #
  - # Are they using dbm/db auth? If so, add DBM/DB library.
  - #
  - if grep mod_auth_dbm Makefile > /dev/null; then
  -     LIBS="$LIBS $DBM_LIB"
  - fi
  - if grep mod_auth_db Makefile > /dev/null; then
  -     LIBS="$LIBS $DB_LIB"
  - fi
  - 
  - #
    # Now HS's POSIX regex implementation if needed/wanted
    #
    if [ "$RULE_WANTHSREGEX" = "yes" ]; then
  --- 632,637 ----
  ***************
  *** 669,684 ****
    fi
    
    #
  ! # FINALLY, finish building Makefile.config
    #
    echo "CFLAGS1=$CFLAGS">> Makefile.config
    echo "INCLUDES1=$INCLUDES">> Makefile.config
  - echo "LIBS1=$LIBS">> Makefile.config
    echo "LDFLAGS1=$LDFLAGS">> Makefile.config
    echo "BROKEN_BPRINTF_FLAGS=$OSBPRINTF">> Makefile.config
    echo "REGLIB=$REGLIB">> Makefile.config
    echo "RANLIB=$RANLIB">> Makefile.config
    echo "SHELL=$SHELL">> Makefile.config
    echo >> Makefile.config
    echo "#### End of Configure created section ####">> Makefile.config
    
  --- 659,693 ----
    fi
    
    #
  ! # FINALLY, finish (with the exception of LIBS) building Makefile.config
    #
    echo "CFLAGS1=$CFLAGS">> Makefile.config
    echo "INCLUDES1=$INCLUDES">> Makefile.config
    echo "LDFLAGS1=$LDFLAGS">> Makefile.config
    echo "BROKEN_BPRINTF_FLAGS=$OSBPRINTF">> Makefile.config
    echo "REGLIB=$REGLIB">> Makefile.config
    echo "RANLIB=$RANLIB">> Makefile.config
    echo "SHELL=$SHELL">> Makefile.config
  + 
  + #
  + # This would be the area to do any ./helpers/TestLib tests,
  + # before we actually write LIBS to Makefile.config.
  + # Punt for now...
  + 
  + #
  + # Are they using dbm/db auth? If so, add DBM/DB library.
  + #
  + if grep mod_auth_dbm Makefile > /dev/null; then
  +     LIBS="$LIBS $DBM_LIB"
  + fi
  + if grep mod_auth_db Makefile > /dev/null; then
  +     LIBS="$LIBS $DB_LIB"
  + fi
  + 
  + #
  + # NOW we finish Makefile.config
  + #
  + echo "LIBS1=$LIBS">> Makefile.config
    echo >> Makefile.config
    echo "#### End of Configure created section ####">> Makefile.config
    
  
  
  

Reply via email to