jim 96/10/25 06:06:38
Modified: src Configure
Added: src/helpers PrintPath
Removed: src/helpers GuessWhere
Log:
People didn't like full pathnames for
gcc or cc; removed them. Rename helper script and minor fluff
Revision Changes Path
1.33 +6 -4 apache/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache/src/Configure,v
retrieving revision 1.32
retrieving revision 1.33
diff -C3 -r1.32 -r1.33
*** Configure 1996/10/24 21:17:34 1.32
--- Configure 1996/10/25 13:06:35 1.33
***************
*** 1,5 ****
#!/bin/sh
! # $Id: Configure,v 1.32 1996/10/24 21:17:34 jim Exp $
trap 'rm -f $tmpfile; exit' 0 1 2 3 15
# Apache configuration script, first cut --- rst.
--- 1,5 ----
#!/bin/sh
! # $Id: Configure,v 1.33 1996/10/25 13:06:35 jim Exp $
trap 'rm -f $tmpfile; exit' 0 1 2 3 15
# Apache configuration script, first cut --- rst.
***************
*** 12,18 ****
# be totally configured from Configuration
#
# Uses 3 supplemental scripts located in ./helpers: CutRule,
! # GuessOS and GuessWhere
#
file=Configuration
--- 12,18 ----
# be totally configured from Configuration
#
# Uses 3 supplemental scripts located in ./helpers: CutRule,
! # GuessOS and PrintPath
#
file=Configuration
***************
*** 308,314 ****
for compilers in "gcc" "cc" "acc" "c89"
do
lookedfor="$lookedfor $compilers"
! if COMPILER=`./helpers/GuessWhere $compilers`; then
break
fi
done
--- 308,315 ----
for compilers in "gcc" "cc" "acc" "c89"
do
lookedfor="$lookedfor $compilers"
! if ./helpers/PrintPath -s $compilers; then
! COMPILER="$compilers"
break
fi
done
***************
*** 387,393 ****
#
# Look for ranlib
#
! if RANLIB=`./helpers/GuessWhere ranlib`; then : ;
else
RANLIB="true"
fi
--- 388,395 ----
#
# Look for ranlib
#
! if ./helpers/PrintPath -s ranlib; then
! RANLIB="ranlib"
else
RANLIB="true"
fi