cvs commit: apache-2.0/mpm/src/lib/apr/time/unix Makefile.in

1999-08-18 Thread rbb
rbb 99/08/18 13:20:30

  Modified:mpm/src/lib/apr configure
   mpm/src/lib/apr/file_io/unix Makefile.in
   mpm/src/lib/apr/lib Makefile.in
   mpm/src/lib/apr/misc/unix Makefile.in
   mpm/src/lib/apr/network_io/unix Makefile.in
   mpm/src/lib/apr/test Makefile.in logresolve.c rotatelogs.c
suexec.c
   mpm/src/lib/apr/threadproc/unix Makefile.in
   mpm/src/lib/apr/time/unix Makefile.in
  Removed: mpm/src/lib/apr/test a.out ab client htdigest new server
testargs testfile testproc testsig testsock
testthread testtime
  Log:
  Run make depend after moving the four header files.  Remove the test programs
  from cvs.  Fix some small problems in some of the test programs.
  
  Revision  ChangesPath
  1.3   +426 -342  apache-2.0/mpm/src/lib/apr/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-2.0/mpm/src/lib/apr/configure,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- configure 1999/08/18 13:33:22 1.2
  +++ configure 1999/08/18 20:18:40 1.3
  @@ -10,7 +10,7 @@
   
   
   # Guess values for system-dependent variables and create Makefiles.
  -# Generated automatically using autoconf version 2.12 
  +# Generated automatically using autoconf version 2.13 
   # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
   #
   # This configure script is free software; the Free Software Foundation
  @@ -60,6 +60,7 @@
   # Initialize some other variables.
   subdirs=
   MFLAGS= MAKEFLAGS=
  +SHELL=${CONFIG_SHELL-/bin/sh}
   # Maximum number of lines to put in a shell here document.
   ac_max_here_lines=12
   
  @@ -343,7 +344,7 @@
   verbose=yes ;;
   
 -version | --version | --versio | --versi | --vers)
  -echo "configure generated by autoconf version 2.12"
  +echo "configure generated by autoconf version 2.13"
   exit 0 ;;
   
 -with-* | --with-*)
  @@ -513,9 +514,11 @@
   # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
   ac_cpp='$CPP $CPPFLAGS'
   ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  -ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext 
$LIBS 1>&5'
  +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS 
conftest.$ac_ext $LIBS 1>&5'
   cross_compiling=$ac_cv_prog_cc_cross
   
  +ac_exeext=
  +ac_objext=o
   if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
 # Stardent Vistra SVR4 grep lacks -e, says [EMAIL PROTECTED]
 if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  @@ -545,15 +548,16 @@
   # Extract the first word of "gcc", so it can be a program name with args.
   set dummy gcc; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:549: checking for $ac_word" >&5
  +echo "configure:552: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
 echo $ac_n "(cached) $ac_c" 1>&6
   else
 if test -n "$CC"; then
 ac_cv_prog_CC="$CC" # Let the user override the test.
   else
  -  IFS="${IFS=}"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  -  for ac_dir in $PATH; do
  +  IFS="${IFS=}"; ac_save_ifs="$IFS"; IFS=":"
  +  ac_dummy="$PATH"
  +  for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if test -f $ac_dir/$ac_word; then
 ac_cv_prog_CC="gcc"
  @@ -574,16 +578,17 @@
 # Extract the first word of "cc", so it can be a program name with args.
   set dummy cc; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:578: checking for $ac_word" >&5
  +echo "configure:582: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
 echo $ac_n "(cached) $ac_c" 1>&6
   else
 if test -n "$CC"; then
 ac_cv_prog_CC="$CC" # Let the user override the test.
   else
  -  IFS="${IFS=}"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  +  IFS="${IFS=}"; ac_save_ifs="$IFS"; IFS=":"
 ac_prog_rejected=no
  -  for ac_dir in $PATH; do
  +  ac_dummy="$PATH"
  +  for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if test -f $ac_dir/$ac_word; then
 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
  @@ -618,25 +623,61 @@
 echo "$ac_t""no" 1>&6
   fi
   
  +  if test -z "$CC"; then
  +case "`uname -s`" in
  +*win32* | *WIN32*)
  +  # Extract the first word of "cl", so it can be a program name with 
args.
  +set dummy cl; ac_word=$2
  +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  +echo "configure:633: checking for $ac_word" >&5
  +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  +  echo $ac_n "(cached) $ac_c" 1>&6
  +else
  +  if test -n "$CC"; then
  +  ac_cv_prog_CC="$CC" # Let the user override the test.
  +else
 

cvs commit: apache-2.0/mpm/src/lib/apr/time/unix Makefile.in

1999-08-18 Thread rbb
rbb 99/08/18 05:32:04

  Modified:mpm/src/lib/apr/file_io/unix Makefile.in
   mpm/src/lib/apr/lib Makefile.in
   mpm/src/lib/apr/misc/unix Makefile.in
   mpm/src/lib/apr/network_io/unix Makefile.in
   mpm/src/lib/apr/threadproc/unix Makefile.in
   mpm/src/lib/apr/time/unix Makefile.in
  Removed: mpm/src/lib/apr config.status
   mpm/src/lib/apr/include apr_config.h
  Log:
  Basic cleanup for apr.  This takes care of the make depend that used to be
  needed before APR would build.  This also removes some files that never should
  have been imported.
  
  Revision  ChangesPath
  1.2   +6 -12 apache-2.0/mpm/src/lib/apr/file_io/unix/Makefile.in
  
  Index: Makefile.in
  ===
  RCS file: /home/cvs/apache-2.0/mpm/src/lib/apr/file_io/unix/Makefile.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.in   1999/08/17 15:59:36 1.1
  +++ Makefile.in   1999/08/18 12:32:00 1.2
  @@ -59,19 +59,16 @@
   # DO NOT REMOVE
   dir.o: dir.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
  - ../../include/apr_file_io.h $(INCDIR)/apr_lib.h \
  - $(INCDIR)/apr_config.h $(INCDIR)/hsregex.h \
  + ../../include/apr_file_io.h $(INCDIR)/apr_lib.h $(INCDIR)/hsregex.h \
../../include/apr_portable.h ../../include/apr_thread_proc.h \
../../include/apr_win.h ../../include/apr_network_io.h \
../../include/apr_lock.h ../../include/apr_time.h
   fileacc.o: fileacc.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
  - ../../include/apr_file_io.h $(INCDIR)/apr_lib.h \
  - $(INCDIR)/apr_config.h $(INCDIR)/hsregex.h
  + ../../include/apr_file_io.h $(INCDIR)/apr_lib.h $(INCDIR)/hsregex.h
   filedup.o: filedup.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
  - ../../include/apr_file_io.h $(INCDIR)/apr_lib.h \
  - $(INCDIR)/apr_config.h $(INCDIR)/hsregex.h
  + ../../include/apr_file_io.h $(INCDIR)/apr_lib.h $(INCDIR)/hsregex.h
   filestat.o: filestat.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
../../include/apr_file_io.h
  @@ -80,16 +77,13 @@
../../include/apr_file_io.h ../../include/apr_portable.h \
../../include/apr_thread_proc.h ../../include/apr_win.h \
../../include/apr_network_io.h ../../include/apr_lock.h \
  - ../../include/apr_time.h $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
  - $(INCDIR)/hsregex.h
  + ../../include/apr_time.h $(INCDIR)/apr_lib.h $(INCDIR)/hsregex.h
   pipe.o: pipe.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
  - ../../include/apr_file_io.h $(INCDIR)/apr_lib.h \
  - $(INCDIR)/apr_config.h $(INCDIR)/hsregex.h
  + ../../include/apr_file_io.h $(INCDIR)/apr_lib.h $(INCDIR)/hsregex.h
   readwrite.o: readwrite.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
  - ../../include/apr_file_io.h $(INCDIR)/apr_lib.h \
  - $(INCDIR)/apr_config.h $(INCDIR)/hsregex.h
  + ../../include/apr_file_io.h $(INCDIR)/apr_lib.h $(INCDIR)/hsregex.h
   seek.o: seek.c fileio.h ../../include/apr_general.h \
../../include/apr_config.h ../../include/apr_errno.h \
../../include/apr_file_io.h
  
  
  
  1.2   +24 -24apache-2.0/mpm/src/lib/apr/lib/Makefile.in
  
  Index: Makefile.in
  ===
  RCS file: /home/cvs/apache-2.0/mpm/src/lib/apr/lib/Makefile.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.in   1999/08/17 15:59:37 1.1
  +++ Makefile.in   1999/08/18 12:32:01 1.2
  @@ -61,29 +61,29 @@
&& rm Makefile.new
   
   # DO NOT REMOVE
  -apr_cpystrn.o: apr_cpystrn.c $(INCDIR)/apr_config.h
  -apr_execve.o: apr_execve.c $(INCDIR)/apr_config.h
  -apr_fnmatch.o: apr_fnmatch.c $(INCDIR)/apr_config.h $(INCDIR)/apr_fnmatch.h \
  - $(INCDIR)/apr_lib.h ../include/apr_general.h ../include/apr_config.h \
  +apr_cpystrn.o: apr_cpystrn.c ../include/apr_config.h
  +apr_execve.o: apr_execve.c ../include/apr_config.h
  +apr_fnmatch.o: apr_fnmatch.c ../include/apr_config.h \
  + $(INCDIR)/apr_fnmatch.h $(INCDIR)/apr_lib.h ../include/apr_general.h \
../include/apr_errno.h ../include/apr_file_io.h $(INCDIR)/hsregex.h
  -apr_getpass.o: apr_getpass.c $(INCDIR)/apr_config.h \
  +apr_getpass.o: apr_getpass.c ../include/apr_config.h \
../include/apr_errno.h $(INCDIR)/apr_lib.h ../include/apr_general.h \
  - ../include/apr_config.h ../include/apr_file_io.h $(INCDIR)/hsregex.h
  -apr_md5.o: apr_md5.c $(INCDIR)/apr_config.h $(INCDIR)/apr_md5.h \
  - $(INCDIR)/apr_lib.h ../include/apr_general.h ../include/apr_config.h \
  - ../include/apr_errno.h ../include/apr_file_io.h $(IN