cvs commit: apache-1.3/src/helpers GuessOS

1999-12-17 Thread martin
martin  99/12/17 05:52:03

  Modified:src/helpers GuessOS
  Log:
  Fix GuessOS to correctly return "TPF" instead of "OS390" when
  compiling apache for TPF.
  
  Submitted by:   Joe Moenich, Ovies Brabson <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.66  +14 -7 apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- GuessOS   1999/12/09 17:19:40 1.65
  +++ GuessOS   1999/12/17 13:52:00 1.66
  @@ -12,6 +12,20 @@
   # Be as similar to the output of config.guess/config.sub
   # as possible.
   
  +# Handle TPF before handling other OSes.  This
  +# is being done because TPF is sometimes compiled
  +# on OS/390.  When that is the case, if we don't
  +# handle TPF ahead of the other OSes, TPF will
  +# fall into the OS/390 case and this script would
  +# return an incorrect value for the platform.
  +#
  +# Apache is not compiled on the TPF platform
  +# therefore an environment variable is used
  +if [ "x$TPF" = "xYES" ]; then
  +echo "TPF"
  +exit 0   
  +fi
  +
   # First get uname entries that we use below
   
   MACHINE=`(uname -m) 2>/dev/null` || MACHINE="unknown"
  @@ -295,13 +309,6 @@
   if [ -d /usr/apollo ]; then
   echo "whatever-apollo-whatever"
   exit 0
  -fi
  -
  -# Apache is not compiled on the TPF platform
  -# therefore an environment variable is used
  -if [ "x$TPF" = "xYES" ]; then
  -echo "TPF"
  -exit 0   
   fi
   
   # Now NeXT
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1999-11-28 Thread rse
rse 99/11/28 03:24:27

  Modified:src  CHANGES
   src/helpers GuessOS
  Log:
  Replaced pipes with commas in GuessOS' fallback output (displayed for not
  explicitly recognized platforms) to avoid side-effects with APACI's --shadow
  feature and similar uses where GuessOS' output is used directly on the
  filesystem (where pipes are meta-characters!).
  
  Submitted by: Paul Gilmartin <[EMAIL PROTECTED]>
  Adjusted and reviewed by: Ralf S. Engelschall
  PR: 5303
  
  Revision  ChangesPath
  1.1449+6 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1448
  retrieving revision 1.1449
  diff -u -r1.1448 -r1.1449
  --- CHANGES   1999/11/28 11:17:50 1.1448
  +++ CHANGES   1999/11/28 11:24:25 1.1449
  @@ -1,4 +1,10 @@
   Changes with Apache 1.3.10
  + 
  +  *) Replaced pipes with commas in GuessOS' fallback output (displayed for 
not
  + explicitly recognized platforms) to avoid side-effects with APACI's
  + --shadow feature and similar uses where GuessOS' output is used directly
  + on the filesystem (where pipes are meta-characters!).
  + [Paul Gilmartin <[EMAIL PROTECTED]>] PR#5303
   
 *) Made stripping of a trailing slash in directory names in top-level
configure script more robust and this way support also a plain `/' 
  
  
  
  1.64  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- GuessOS   1999/08/09 07:38:44 1.63
  +++ GuessOS   1999/11/28 11:24:27 1.64
  @@ -326,5 +326,5 @@
   # At this point we gone through all the one's
   # we know of: Punt
   
  -echo "${MACHINE}-whatever-${SYSTEM}|${RELEASE}|${VERSION}" 
  +echo "${MACHINE}-whatever-${SYSTEM},${RELEASE},${VERSION}" 
   exit 0
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1999-07-30 Thread wsanchez
wsanchez99/07/29 22:14:09

  Modified:src/helpers GuessOS
  Log:
  Change "Power Macintosh" to Power* so if uname prints "Power Book" we're 
still happy.
  
  Revision  ChangesPath
  1.61  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- GuessOS   1999/05/03 23:07:45 1.60
  +++ GuessOS   1999/07/30 05:14:08 1.61
  @@ -243,7 +243,7 @@
   
   Rhapsody:*:*:*)
case "${MACHINE}" in
  - "Power Macintosh") MACHINE=powerpc ;;
  + Power*) MACHINE=powerpc ;;
esac
echo "${MACHINE}-apple-rhapsody${RELEASE}"; exit 0
;;
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS PrintPath TestCompile buildinfo.sh checkheader.sh findcpp.sh fmn.sh mkshadow.sh ppl.sh slo.sh

1999-04-21 Thread jim
jim 99/04/21 07:30:35

  Modified:src/helpers GuessOS PrintPath TestCompile buildinfo.sh
checkheader.sh findcpp.sh fmn.sh mkshadow.sh ppl.sh
slo.sh
  Log:
  Change 'Written by' to 'Initially written by'
  per the group consensus
  
  Revision  ChangesPath
  1.59  +2 -0  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- GuessOS   1999/03/30 06:19:17 1.58
  +++ GuessOS   1999/04/21 14:30:25 1.59
  @@ -7,6 +7,8 @@
   # addition: Any changes or additions to this script should be
   # Emailed to the Apache group ([EMAIL PROTECTED]).
   #
  +# Initially written by Jim Jagielski for the Apache configuration mechanism
  +#
   # Be as similar to the output of config.guess/config.sub
   # as possible.
   
  
  
  
  1.18  +3 -0  apache-1.3/src/helpers/PrintPath
  
  Index: PrintPath
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPath,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- PrintPath 1999/02/07 23:26:51 1.17
  +++ PrintPath 1999/04/21 14:30:26 1.18
  @@ -10,6 +10,9 @@
   # Usage:
   #  PrintPath [-s] [-pPATHNAME] program [program ...]
   #
  +# Initially written by Jim Jagielski for the Apache configuration mechanism
  +#  (with kudos to Kernighan/Pike)
  +#
   # This script falls under the Apache License.
   # See http://www.apache.org/docs/LICENSE
   
  
  
  
  1.26  +2 -0  apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/TestCompile,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- TestCompile   1999/02/07 23:26:51 1.25
  +++ TestCompile   1999/04/21 14:30:26 1.26
  @@ -32,6 +32,8 @@
   # located) if you want to test it out. Configure must
   # also call it as './helpers/TestCompile'
   #
  +# Initially written by Jim Jagielski for the Apache configuration mechanism
  +#
   # This script falls under the Apache License.
   # See http://www.apache.org/docs/LICENSE
   
  
  
  
  1.8   +1 -1  apache-1.3/src/helpers/buildinfo.sh
  
  Index: buildinfo.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/buildinfo.sh,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- buildinfo.sh  1999/02/07 23:26:52 1.7
  +++ buildinfo.sh  1999/04/21 14:30:26 1.8
  @@ -1,7 +1,7 @@
   #!/bin/sh
   ##
   ##  buildinfo.sh -- Determine Build Information
  -##  Written by Ralf S. Engelschall <[EMAIL PROTECTED]>
  +##  Initially written by Ralf S. Engelschall <[EMAIL PROTECTED]>
   ##  for the Apache's Autoconf-style Interface (APACI) 
   ##
   #
  
  
  
  1.6   +2 -1  apache-1.3/src/helpers/checkheader.sh
  
  Index: checkheader.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/checkheader.sh,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- checkheader.sh1999/01/16 22:00:47 1.5
  +++ checkheader.sh1999/04/21 14:30:27 1.6
  @@ -1,7 +1,8 @@
   #!/bin/sh
   ##
   ##  checkheader.sh -- Check whether a C header file exists
  -##  Written by Ralf S. Engelschall for the Apache configuration mechanism
  +##  Initially written by Ralf S. Engelschall for the Apache
  +##   configuration mechanism
   ##
   #
   # This script falls under the Apache License.
  
  
  
  1.7   +2 -1  apache-1.3/src/helpers/findcpp.sh
  
  Index: findcpp.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/findcpp.sh,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- findcpp.sh1999/01/16 22:00:47 1.6
  +++ findcpp.sh1999/04/21 14:30:28 1.7
  @@ -1,7 +1,8 @@
   #!/bin/sh
   ##
   ##  findcpp.sh -- Find out how to _directly_ run the C Pre-Processor (CPP)
  -##  Written by Ralf S. Engelschall for the Apache configuration mechanism
  +##  Initially written by Ralf S. Engelschall for the Apache configuration
  +##   mechanism
   ##
   #
   # This script falls under the Apache License.
  
  
  
  1.6   +1 -2  apache-1.3/src/helpers/fmn.sh
  
  Index: fmn.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/fmn.sh,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- fmn.sh1999/01/16 22:00:47 1.5
  +++ fmn.sh1999/04/21 14:30:29 1.6
  @@ -2,8 +2,7 @@
 

cvs commit: apache-1.3/src/helpers GuessOS

1999-03-30 Thread randy
randy   99/03/29 22:19:17

  Modified:.STATUS
   src  CHANGES Configure
   src/helpers GuessOS
  Log:
  Fix DSO builds on BSD/OS 3.x. Must use native shlicc2 compiler.
  [Randy Terbush, Covalent Technologies]
  
  Revision  ChangesPath
  1.681 +1 -14 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.680
  retrieving revision 1.681
  diff -u -r1.680 -r1.681
  --- STATUS1999/03/27 22:43:29 1.680
  +++ STATUS1999/03/30 06:18:58 1.681
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/27 22:43:29 $]
  +  Last modified at [$Date: 1999/03/30 06:18:58 $]
   
   Release:
   
  @@ -74,19 +74,6 @@
 => When I find time, I can look at this. But I would appreciate
when someone other already can dive into this. My opinion
is already appended to the PR.
  -
  -* Randy's proposed changes for binbuild:
  -
  -  1. Change to build binary only distribution
  - Lars: -0
  -
  -  2. Add 'make dist' target to call binbuild.sh
  - [Roy: That would require a Makefile, which is what binbuild creates.
  -   I don't see any point in that.]
  - Lars: -1 (Roy explained why)
  -
  -  3. Create toplevel 'setup' script for install to mirror win32 name
  - [It is currently creating "install-bindist.sh"]
   
   * long pathnames with many components and no AllowOverride None
   Workaround is to define  with AllowOverride None,
  
  
  
  1.1295+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1294
  retrieving revision 1.1295
  diff -u -r1.1294 -r1.1295
  --- CHANGES   1999/03/25 19:56:44 1.1294
  +++ CHANGES   1999/03/30 06:19:06 1.1295
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.7
   
  +  *) Add support for DSO module compilation on BSD/OS 3.x.
  + [Randy Terbush, Covalent Technologies]
  +
 *) Fix sed-substitutions in `make install': path elements like `httpd/conf'
(for instance from an APACI configure --sysconfdir=/etc/httpd/conf
option) were substituted with $(TARGET).conf, etc. Same for other 
strings
  
  
  
  1.336 +9 -0  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.335
  retrieving revision 1.336
  diff -u -r1.335 -r1.336
  --- Configure 1999/03/24 09:23:54 1.335
  +++ Configure 1999/03/30 06:19:07 1.336
  @@ -437,6 +437,11 @@
DBM_LIB=""
DB_LIB=""
;;
  +*-bsdi3)
  +if [ "x$using_shlib" = "x1" ] ; then
  +CC="shlicc2"
  +fi
  +;;
   *-bsdi*)
OS='BSDI'
DBM_LIB=""
  @@ -984,6 +989,10 @@
LDFLAGS_SHLIB="-Bshareable"
LDFLAGS_SHLIB_EXPORT=""
SHLIB_SUFFIX_DEPTH=2
  + ;;
  + *-bsdi3)
  + LD_SHLIB="shlicc2"
  + LDFLAGS_SHLIB="-r"
;;
*-bsdi)
CFLAGS_SHLIB="-fPIC"
  
  
  
  1.58  +5 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- GuessOS   1999/02/07 23:26:51 1.57
  +++ GuessOS   1999/03/30 06:19:17 1.58
  @@ -114,7 +114,11 @@
echo "i486-whatever-bsdi"; exit 0
;;
   
  -BSD/386:*|BSD/OS:*)
  + BSD/386|BSD/OS:3.*)
  + echo "${MACHINE}-whatever-bsdi3"; exit 0
  + ;;
  +
  + BSD/386:*|BSD/OS:*)
echo "${MACHINE}-whatever-bsdi"; exit 0
;;
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS PrintPath TestCompile buildinfo.sh find-dbm-lib slo.sh

1999-02-07 Thread jim
jim 99/02/07 15:26:54

  Modified:src  Configure
   src/helpers GuessOS PrintPath TestCompile buildinfo.sh
find-dbm-lib slo.sh
  Log:
  Some areas where the "string protect shell hack"
  wasn't finished
  
  Revision  ChangesPath
  1.329 +28 -28apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.328
  retrieving revision 1.329
  diff -u -r1.328 -r1.329
  --- Configure 1999/01/17 10:48:30 1.328
  +++ Configure 1999/02/07 23:26:49 1.329
  @@ -228,7 +228,7 @@
   
   ## Rule SHARED_CORE implies required DSO support
   ##
  -if [ "$RULE_SHARED_CORE" = "yes" ]; then
  +if [ "x$RULE_SHARED_CORE" = "xyes" ]; then
using_shlib=1
   fi
   
  @@ -371,7 +371,7 @@
echo "but if you would care to port to 64-bit, send us the patches."
DEF_WANTHSREGEX=yes
DBM_LIB=""
  - if [ "$RULE_IRIXNIS" = "yes" ]; then
  + if [ "x$RULE_IRIXNIS" = "xyes" ]; then
OS='SGI IRIX-64 w/NIS'
CFLAGS="$CFLAGS -DIRIX"
LIBS="$LIBS -lsun"
  @@ -383,14 +383,14 @@
   *-sgi-irix32)
DEF_WANTHSREGEX=yes
DBM_LIB=""
  - if [ "$RULE_IRIXN32" = "yes" ]; then
  - if [ "$RULE_IRIXNIS" = "yes" ]; then
  + if [ "x$RULE_IRIXN32" = "xyes" ]; then
  + if [ "x$RULE_IRIXNIS" = "xyes" ]; then
OS='SGI IRIX-32 w/NIS'
else
OS='SGI IRIX-32'
fi
else
  - if [ "$RULE_IRIXNIS" = "yes" ]; then
  + if [ "x$RULE_IRIXNIS" = "xyes" ]; then
OS='SGI IRIX w/NIS'
else
OS='SGI IRIX'
  @@ -402,7 +402,7 @@
   *-sgi-irix)
DEF_WANTHSREGEX=yes
DBM_LIB=""
  - if [ "$RULE_IRIXNIS" = "yes" ]; then
  + if [ "x$RULE_IRIXNIS" = "xyes" ]; then
OS='SGI IRIX w/NIS'
CFLAGS="$CFLAGS -DIRIX"
LIBS="$LIBS -lsun"
  @@ -779,7 +779,7 @@
   
   ## And adjust/override WANTHSREGEX as needed
   ##
  -if [ "$RULE_WANTHSREGEX" = "default" ]; then
  +if [ "x$RULE_WANTHSREGEX" = "xdefault" ]; then
if [ "x$DEF_WANTHSREGEX" = "x" ]; then
RULE_WANTHSREGEX=yes
else
  @@ -1022,7 +1022,7 @@
N32FLAG="-n32"
;;
esac
  - if [ "$RULE_IRIXN32" = "yes" ]; then
  + if [ "x$RULE_IRIXN32" = "xyes" ]; then
LDFLAGS_SHLIB="$N32FLAG -shared"
else
LDFLAGS_SHLIB="-shared"
  @@ -1040,7 +1040,7 @@
N32FLAG="-n32"
;;
esac
  - if [ "$RULE_IRIXN32" = "yes" ]; then
  + if [ "x$RULE_IRIXN32" = "xyes" ]; then
LDFLAGS_SHLIB="$N32FLAG -shared"
else
LDFLAGS_SHLIB="-shared"
  @@ -1254,7 +1254,7 @@
esac
;;
   *IRIX-64*)
  - if [ "$RULE_IRIXN32" = "yes" ]; then
  + if [ "x$RULE_IRIXN32" = "xyes" ]; then
case "$CC" in
*/cc|cc )
CFLAGS="$CFLAGS -n32"
  @@ -1264,7 +1264,7 @@
fi
;;
   *IRIX-32*)
  - if [ "$RULE_IRIXN32" = "yes" ]; then
  + if [ "x$RULE_IRIXN32" = "xyes" ]; then
case "$CC" in
*/cc|cc )
CFLAGS="$CFLAGS -n32"
  @@ -1333,7 +1333,7 @@
   # We assume that if they are using SOCKS4, then they've
   # adjusted EXTRA_LIBS and/or EXTRA_LDFLAGS as required,
   # otherwise we assume "-L/usr/local/lib -lsocks"
  -if [ "$RULE_SOCKS4" = "yes" ]; then
  +if [ "x$RULE_SOCKS4" = "xyes" ]; then
   echo " + enabling SOCKS4 support"
   CFLAGS="$CFLAGS -DSOCKS -DSOCKS4"
   CFLAGS="$CFLAGS -Dconnect=Rconnect -Dselect=Rselect"
  @@ -1352,7 +1352,7 @@
   # We assume that if they are using SOCKS5, then they've
   # adjusted EXTRA_LIBS and/or EXTRA_LDFLAGS as required,
   # otherwise we assume "-L/usr/local/lib -lsocks5"
  -if [ "$RULE_SOCKS5" = "yes" ]; then
  +if [ "x$RULE_SOCKS5" = "xyes" ]; then
   echo " + enabling SOCKS5 support"
   CFLAGS="$CFLAGS -DSOCKS -DSOCKS5"
   CFLAGS="$CFLAGS -Dconnect=SOCKSconnect -Dselect=SOCKSselect"
  @@ -1495,13 +1495,13 @@
sed '1,/ConfigStart/d;/ConfigEnd/,$d' $tmpfile2 > \
 $tmpfile3
echo "o $modname uses ConfigStart/End"
  - if [ "$RULE_PARANOID" = "yes" ]; then
  + if [ "x$RULE_PARANOID" = "xyes" ]; then
sed 's/^/>> /' $tmpfile3
fi
. ./$tmpfile3
fi
rm -f $tmpfile2 $tmpfile3
  - if [ "$ext" != "so" ]; then
  + if [ "x$ext" != "xso" ]; then
   

cvs commit: apache-1.3/src/helpers GuessOS PrintPath TestCompile binbuild.sh buildinfo.sh checkheader.sh find-dbm-lib findcpp.sh fmn.sh fp2rp install.sh mkshadow.sh ppl.sh slo.sh

1999-01-15 Thread dgaudet
dgaudet 99/01/15 14:40:01

  Modified:.configure
   src  CHANGES Configure
   src/helpers GuessOS PrintPath TestCompile binbuild.sh
buildinfo.sh checkheader.sh find-dbm-lib findcpp.sh
fmn.sh fp2rp install.sh mkshadow.sh ppl.sh slo.sh
  Log:
  Back out jim's recent "x"/"." change.  This is a veto and I've given
  reasons in new-httpd.
  
  Revision  ChangesPath
  1.72  +60 -60apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /home/cvs/apache-1.3/configure,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -r1.71 -r1.72
  --- configure 1999/01/15 22:25:10 1.71
  +++ configure 1999/01/15 22:39:50 1.72
  @@ -96,7 +96,7 @@
   ##
   ##  display version information
   ##
  -if [ "$quiet" = "no" ]; then
  +if [ ".$quiet" = .no ]; then
   APV=`cat $src/include/httpd.h |\
grep "#define SERVER_BASEVERSION" |\
sed -e 's/^[^"]*"//' -e 's/".*$//' -e 's/^Apache\///'`
  @@ -119,7 +119,7 @@
   ##
   PERL=no-perl-on-this-system
   perlpath="`$aux/PrintPath perl5 perl miniperl`"
  -if [ "$perlpath" != "" ]; then
  +if [ "x$perlpath" != x ]; then
   PERL="$perlpath"
   fi
   
  @@ -131,9 +131,9 @@
   ##
   SEO='' # CHANGE THIS VARIABLE HERE IF YOU HAVE PROBLEMS WITH ECHO!
   bytes=`echo $SEO '\1' | wc -c | awk '{ printf("%s", $1); }'`
  -if [ "$bytes" != "3" ]; then
  +if [ ".$bytes" != .3 ]; then
   bytes=`echo -E '\1' | wc -c | awk '{ printf("%s", $1); }'`
  -if [ "$bytes" != "3" ]; then
  +if [ ".$bytes" != .3 ]; then
   echo " + Warning: Your 'echo' command is slightly broken."
   echo " + It interprets escape sequences per default. We already"
   echo " + tried 'echo -E' but had no real success. If errors occur"
  @@ -152,7 +152,7 @@
   ##
   AWK=awk
   awkpath="`$aux/PrintPath nawk gawk awk`"
  -if [ "$awkpath" != "" ]; then
  +if [ "x$awkpath" != x ]; then
   AWK="$awkpath"
   fi
   
  @@ -163,7 +163,7 @@
   ##
   TAR=tar
   tarpath="`$aux/PrintPath gtar gnutar tar`"
  -if [ "$awkpath" != "" ]; then
  +if [ "x$awkpath" != x ]; then
   TAR="$tarpath"
   fi
   case "`$TAR --version 2>/dev/null`" in
  @@ -245,7 +245,7 @@
   eval "shared_$module=$share"
   modules="${modules}:$module"
   modulelist="${modulelist}:$module=$add"
  -if [ "$share" = "yes" ]; then
  +if [ ".$share" = .yes ]; then
   modulelist="${modulelist}*"
   fi
   done
  @@ -258,7 +258,7 @@
   OIFS="$IFS" IFS="$DIFS"
   for var in CFLAGS LDFLAGS LIBS INCLUDES DEPS; do
   eval "val=\$EXTRA_$var"
  -if [ "$val" != "" ]; then
  +if [ "x$val" != x ]; then
   eval "$var=\$val"
   eval "EXTRA_$var=\"\"; export EXTRA_$var"
   echo " + Hint: please use $var instead of EXTRA_$var next time"
  @@ -273,7 +273,7 @@
   *--with-layout=* ) 
   ;;
   * ) 
  -if [ "$*" = "" ]; then
  +if [ "x$*" = x ]; then
   set -- '--with-layout=Apache'
   else
   set -- '--with-layout=Apache' "$@"
  @@ -293,7 +293,7 @@
   for apc_option
   do
   #   if previous option needs an argument, assign it.
  -if [ "$apc_prev" != "" ]; then
  +if [ "x$apc_prev" != x ]; then
   eval "$apc_prev=\$apc_option"
   apc_prev=""
   continue
  @@ -408,11 +408,11 @@
   done
   IFS="$OIFS"
   rm -f $pldconf 2>/dev/null
  -if [ "$prefix" = "UNSET" ]; then
  +if [ ".$prefix" = .UNSET ]; then
   echo "configure:Error: Path layout definition not found or 
incorrect" 1>&2
   exit 1
   fi
  -if [ "$quiet" = "no" ]; then
  +if [ ".$quiet" = .no ]; then
   echo " + using installation path layout: $name ($file)"
   fi
   with_layout=1
  @@ -433,7 +433,7 @@
   for apc_option
   do
   #   if previous option needs an argument, assign it.
  -if [ "$apc_prev" != "" ]; then
  +if [ "x$apc_prev" != x ]; then
   eval "$apc_prev=\$apc_option"
   apc_prev=""
   continue
  @@ -461,7 +461,7 @@
   case "$apc_option" in
   --shadow=*)
   shadow="$apc_optarg"
  -if [ "$quiet" = "no" ]; then
  +if [ .$quiet = .no ]; then
   echo " + creating external package shadow tree 
($shadow)"
   fi
   rm -rf $shadow 2>/dev/null
  @@ -469,7 +469,7 @@
   for file in $mkf $sedsubst $addconf $tplconf $pldconf 
$configstatus; do
   rm -f $shadow/$file 2>/dev/null
   done
  -if [ "$quiet" = "no" ]; then
  +if [ .$quiet = .no ]; then
  

cvs commit: apache-1.3/src/helpers GuessOS PrintPath TestCompile binbuild.sh buildinfo.sh checkheader.sh find-dbm-lib findcpp.sh fmn.sh fp2rp install.sh mkshadow.sh ppl.sh slo.sh

1999-01-15 Thread jim
jim 99/01/15 12:59:46

  Modified:.configure
   src  Configure
   src/helpers GuessOS PrintPath TestCompile binbuild.sh
buildinfo.sh checkheader.sh find-dbm-lib findcpp.sh
fmn.sh fp2rp install.sh mkshadow.sh ppl.sh slo.sh
  Log:
  Final phase of shell programming style consistancy check.
  
  Revision  ChangesPath
  1.70  +7 -7  apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- configure 1999/01/15 20:44:01 1.69
  +++ configure 1999/01/15 20:59:34 1.70
  @@ -1157,7 +1157,7 @@
   name="`echo $rule | tr "a-z" "A-Z"`"
   eval "val=\$rule_$rule"
   echo $SEO "s%^\\(Rule $name=\\).*%\\1$val%g" >>$sedsubst
  -if [ $verbose = yes ]; then
  +if [ "$verbose" = "yes" ]; then
   echo " + Rule $name=$val"
   fi
   done
  @@ -1168,13 +1168,13 @@
   OIFS="$IFS" IFS=':'
   for module in $modules; do
   eval "share=\$shared_$module"
  -if [ $share = yes ]; then
  +if [ "$share" = "yes" ]; then
   some_shares=1
   fi
   done
   IFS="$OIFS"
  -if [ $some_shares = 1 ]; then
  -if [ $module_so = no ]; then
  +if [ "$some_shares" = "1" ]; then
  +if [ "$module_so" = "no" ]; then
   module_so=yes
   if [ "$quiet" = "no" ]; then
   echo " + enabling mod_so for DSO support"
  @@ -1263,7 +1263,7 @@
   OIFS="$IFS" IFS=':'
   for module in $modules; do
   eval "add=\$module_$module"
  -if [ $add = yes ]; then
  +if [ "$add" = "yes" ]; then
   echo $SEO "s%^.*\\(AddModule.*[_b/]$module\\..*\\)%\\1%g" >>$sedsubst
   echo $SEO "s%^.*\\(SharedModule.*[_b/]$module\\..*\\)%\\1%g" 
>>$sedsubst
   m="yes [static]"
  @@ -1273,11 +1273,11 @@
   m=no
   fi
   eval "share=\$shared_$module"
  -if [ $share = yes ]; then
  +if [ "$share" = "yes" ]; then
   echo $SEO 
"s%^\\(.*\\)AddModule\\(.*[_b/]$module\\.\\)[oam].*\\(.*\\)%\\1SharedModule\\2so\\3%g"
 >>$sedsubst
   m="yes [shared]"
   fi
  -if [ $verbose = yes ]; then
  +if [ "$verbose" = "yes" ]; then
   echo " + Module $module: $m"
   fi
   done
  
  
  
  1.324 +1 -1  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.323
  retrieving revision 1.324
  diff -u -r1.323 -r1.324
  --- Configure 1999/01/15 20:32:53 1.323
  +++ Configure 1999/01/15 20:59:36 1.324
  @@ -172,7 +172,7 @@
   ## that the user was using the old default root directory
   ## and issue a notice about it.
   ##
  -if [ $file != "Configuration.apaci" ]
  +if [ "$file" != "Configuration.apaci" ]
   then
 if [ -d /usr/local/etc/httpd/ ]
 then
  
  
  
  1.55  +3 -3  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- GuessOS   1999/01/09 14:24:52 1.54
  +++ GuessOS   1999/01/15 20:59:38 1.55
  @@ -22,7 +22,7 @@
   #
   # We need to work around FreeBSD 1.1.5.1 
   XREL=`uname -X 2>/dev/null | grep "^Release" | awk '{print $3}'`
  -if [ "x$XREL" != "x" ]; then
  +if [ "$XREL" != "" ]; then
   if [ -f /etc/kconfig ]; then
case "$XREL" in
4.0|4.1)
  @@ -38,9 +38,9 @@
echo "whatever-whatever-sco5"; exit 0
;;
4.2MP)
  - if [ "x$VERSION" = "x2.1.1" ]; then
  + if [ "$VERSION" = "2.1.1" ]; then
echo "${MACHINE}-whatever-unixware211"; exit 0
  - elif [ "x$VERSION" = "x2.1.2" ]; then
  + elif [ "$VERSION" = "2.1.2" ]; then
echo "${MACHINE}-whatever-unixware212"; exit 0
else
echo "${MACHINE}-whatever-unixware2"; exit 0
  
  
  
  1.15  +1 -1  apache-1.3/src/helpers/PrintPath
  
  Index: PrintPath
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPath,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- PrintPath 1998/12/02 14:03:31 1.14
  +++ PrintPath 1999/01/15 20:59:38 1.15
  @@ -49,7 +49,7 @@
   # if test/[] knows about -x, which is the prefered flag.
   ##
   
  -if [ "x$os" = "xOS/2" ]
  +if [ "$os" = "OS/2" ]
   then
   ext=".exe"
   pathname=`echo -E $pathname |
  
  
  
  1.23  +4 -4  apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===

cvs commit: apache-1.3/src/helpers GuessOS

1999-01-09 Thread martin
martin  99/01/09 06:24:52

  Modified:src  Configure
   src/helpers GuessOS
  Log:
  Rename "sni" (Siemens Nixdorf Information Systems) to "siemens" which is the
  (recently changed) official name.
  Switch off DBM_LIB (it's in libc).
  
  Revision  ChangesPath
  1.321 +13 -11apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.320
  retrieving revision 1.321
  diff -u -r1.320 -r1.321
  --- Configure 1999/01/06 21:57:01 1.320
  +++ Configure 1999/01/09 14:24:51 1.321
  @@ -594,14 +594,6 @@
LDFLAGS_SHLIB_EXPORT="-Zlink=dynamic -Wl,-Bexport"
CFLAGS_SHLIB='-Zpic'
;;
  -BS2000*-sni-sysv4*)
  - OS='BS2000'
  - OSDIR='os/bs2000'
  - CC='c89 -XLLML -XLLMK'
  - CFLAGS="$CFLAGS -DCHARSET_EBCDIC -DSVR4 -D_XPG_IV"
  - DEF_WANTHSREGEX=yes
  - LIBS="$LIBS -lsocket -lnsl -lc"
  - ;;
   TPF)
  OS='TPF'
  OSDIR='os/tpf'
  @@ -611,11 +603,21 @@
  LIBS="$LIBS"
  SUBTARGET="target_compile_only"
  ;;
  -*-sni-sysv4*)
  +BS2000*-siemens-sysv4*)
  + OS='BS2000'
  + OSDIR='os/bs2000'
  + CC='c89 -XLLML -XLLMK'
  + CFLAGS="$CFLAGS -DCHARSET_EBCDIC -DSVR4 -D_XPG_IV"
  + DEF_WANTHSREGEX=yes
  + LIBS="$LIBS -lsocket -lnsl -lc"
  + DBM_LIB=""
  + ;;
  +*-siemens-sysv4*)
OS='SVR4'
CFLAGS="$CFLAGS -DSVR4 -D_XPG_IV -DHAS_DLFCN -DUSE_MMAP_FILES 
-DUSE_SYSVSEM_SERIALIZED_ACCEPT -DNEED_UNION_SEMUN"
DEF_WANTHSREGEX=yes
LIBS="$LIBS -lsocket -lnsl -lc"
  + DBM_LIB=""
;;
   pyramid-pyramid-svr4)
OS='SVR4'
  @@ -1078,7 +1080,7 @@
 LDFLAGS_SHLIB_EXPORT="-Wl,-Bexport"
 SHLIB_SUFFIX_DEPTH=1
 ;;
  - RM*-sni-sysv4*)
  + RM*-siemens-sysv4*)
# MIPS hosts can take advantage of the LDFLAGS_SHLIB_EXPORT switch
case $CC in
*/gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
  @@ -1087,7 +1089,7 @@
LDFLAGS_SHLIB="-G"
LDFLAGS_SHLIB_EXPORT="-Wl,-Blargedynsym"
;;
  - *-sni-sysv4*)
  + *-siemens-sysv4*)
# Older SINIX machines must be linked as "shared core"-Apache
case $CC in
*/gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
  
  
  
  1.54  +2 -2  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- GuessOS   1998/12/02 14:03:31 1.53
  +++ GuessOS   1999/01/09 14:24:52 1.54
  @@ -201,11 +201,11 @@
;;
   
   SINIX-?:* | ReliantUNIX-?:*)
  - echo "${MACHINE}-sni-sysv4"; exit 0
  + echo "${MACHINE}-siemens-sysv4"; exit 0
;;
   
   POSIX*BS2000)
  - echo "${MACHINE}-sni-sysv4"; exit 0
  + echo "${MACHINE}-siemens-sysv4"; exit 0
;;
   
   machten:*)
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS PrintPath TestCompile

1998-12-02 Thread jim
jim 98/12/02 06:03:32

  Modified:src  Configure
   src/helpers GuessOS PrintPath TestCompile
  Log:
  Reverse some acknowledgements that really
  aren't needed
  
  Revision  ChangesPath
  1.308 +0 -15 apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.307
  retrieving revision 1.308
  diff -u -r1.307 -r1.308
  --- Configure 1998/12/01 23:59:54 1.307
  +++ Configure 1998/12/02 14:03:30 1.308
  @@ -54,21 +54,6 @@
   ## For more information on the Apache Group and the Apache HTTP server
   ## project, please see .
   
  -# HISTORY:
  -#
  -# Apache configuration script, first cut --- rst.
  -# Don't like it?  Inspired to do something better?  Go for it.
  -#
  -# second cut --- jmj
  -# At this point we change what Configuration contains. It maintain
  -# contains comments, specific compiler flags, a list of included
  -# modules and "rules". These rules are used to allow Configure to
  -# be totally configured from Configuration.
  -#
  -# third cut --- rse
  -# Big cleanup of the generated Makefiles and remove of
  -# some old kludges
  -
   # Uses 6 supplemental scripts located in ./helpers:
   #CutRule: Determines the value for a specified Rule
   #GuessOS: Uses uname to determine OS/platform
  
  
  
  1.53  +1 -4  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- GuessOS   1998/11/06 22:42:40 1.52
  +++ GuessOS   1998/12/02 14:03:31 1.53
  @@ -5,10 +5,7 @@
   # Apache, it follows under Apache's regular licensing
   # (see http://www.apache.org/docs/LICENSE)  with one specific
   # addition: Any changes or additions to this script should be
  -# Emailed to the Apache group ([EMAIL PROTECTED]) in general
  -# and to Jim Jagielski ([EMAIL PROTECTED]) in specific.
  -#
  -# Blame Jim; he wrote it (plus a cast of dozens)
  +# Emailed to the Apache group ([EMAIL PROTECTED]).
   #
   # Be as similar to the output of config.guess/config.sub
   # as possible.
  
  
  
  1.14  +0 -2  apache-1.3/src/helpers/PrintPath
  
  Index: PrintPath
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPath,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- PrintPath 1998/09/17 04:09:41 1.13
  +++ PrintPath 1998/12/02 14:03:31 1.14
  @@ -10,8 +10,6 @@
   # Usage:
   #  PrintPath [-s] [-pPATHNAME] program [program ...]
   #
  -# Blame Jim; he wrote it.
  -#
   # This script falls under the Apache License.
   # See http://www.apache.org/docs/LICENSE
   
  
  
  
  1.19  +0 -2  apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/TestCompile,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- TestCompile   1998/09/21 17:12:04 1.18
  +++ TestCompile   1998/12/02 14:03:31 1.19
  @@ -32,8 +32,6 @@
   # located) if you want to test it out. Configure must
   # also call it as './helpers/TestCompile'
   #
  -# Blame Jim; he wrote it (along with a cast of dozens).
  -#
   # This script falls under the Apache License.
   # See http://www.apache.org/docs/LICENSE
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-11-04 Thread jim
jim 98/11/04 04:38:35

  Modified:src  CHANGES Configure
   src/helpers GuessOS
  Log:
  Submitted by: Tom Horsley <[EMAIL PROTECTED]>
  Add the PowerMAX OS port.
  
  Revision  ChangesPath
  1.1132+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1131
  retrieving revision 1.1132
  diff -u -r1.1131 -r1.1132
  --- CHANGES   1998/11/01 08:45:27 1.1131
  +++ CHANGES   1998/11/04 12:38:32 1.1132
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.4
   
  +  *) PORT: Add a port to the Concurrent PowerMAX OS. [Tom Horsley
  + <[EMAIL PROTECTED]>]
  +
 *) WIN32: Log more explicit error messages if spawning an interpreted 
script failed, including the command line used to attempt to execute 
the interpreter and the Win32 error code returned.  [Marc Slemko]
  
  
  
  1.304 +16 -0 apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.303
  retrieving revision 1.304
  diff -u -r1.303 -r1.304
  --- Configure 1998/10/27 10:37:46 1.303
  +++ Configure 1998/11/04 12:38:32 1.304
  @@ -598,6 +598,16 @@
DEF_WANTHSREGEX=yes
LIBS="$LIBS -lsocket -lnsl -lc -lgen"
;;
  +*-*-powermax*)
  +OS='SVR4'
  +CFLAGS="$CFLAGS -DSVR4"
  +DEF_WANTHSREGEX=yes
  +LIBS="$LIBS -lsocket -lnsl -lgen"
  +LD_SHLIB='cc'
  +LDFLAGS_SHLIB="-Zlink=so"
  +LDFLAGS_SHLIB_EXPORT="-Zlink=dynamic -Wl,-Bexport"
  +CFLAGS_SHLIB='-Zpic'
  +;;
   BS2000*-sni-sysv4*)
OS='BS2000'
OSDIR='os/bs2000'
  @@ -1095,6 +1105,12 @@
   LDFLAGS_SHLIB="$LDFLAGS_SHLIB -lc"
   LDFLAGS_SHLIB_EXPORT="-Wl,-bE:\$(SRCDIR)/support/httpd.exp"
   SHLIB_EXPORT_FILES=yes
  +;;
  +*-*-powermax*)
  +LD_SHLIB='cc'
  +LDFLAGS_SHLIB="-Zlink=so"
  +LDFLAGS_SHLIB_EXPORT="-Zlink=dynamic -Wl,-Bexport"
  +CFLAGS_SHLIB='-Zpic'
   ;;
   *)
   ##  ok, no known explict support for shared objects
  
  
  
  1.51  +5 -0  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- GuessOS   1998/10/04 05:45:55 1.50
  +++ GuessOS   1998/11/04 12:38:34 1.51
  @@ -222,6 +222,11 @@
   UNIX_SV:*:*:maxion)
echo "${MACHINE}-ccur-sysv4"; exit 0;
;;
  +
  +PowerMAX_OS:*:*:Night_Hawk)
  +MACHINE=`uname -p`
  +echo "${MACHINE}-concurrent-powermax"; exit 0;
  +;;
   
   UNIX_SV:*)
if [ -d /usr/nec ];then
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-10-04 Thread marc
marc98/10/03 22:45:56

  Modified:src/helpers GuessOS
  Log:
  Words with spaces have to be quoted.
  
  Revision  ChangesPath
  1.50  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- GuessOS   1998/10/03 19:28:19 1.49
  +++ GuessOS   1998/10/04 05:45:55 1.50
  @@ -252,7 +252,7 @@
echo "pyramid-pyramid-svr4"; exit 0;
;;
   
  -*:*:*:DRS 6000)
  +*:*:*:"DRS 6000")
   echo "drs6000-whatever-whatever"; exit 0;
;;
   esac
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-10-03 Thread jim
jim 98/10/03 12:28:20

  Modified:src  CHANGES Configure
   src/helpers GuessOS
  Log:
  Add the DRS 6000 Port
  
  Submitted by: Paul Debleecker <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.1098+2 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1097
  retrieving revision 1.1098
  diff -u -r1.1097 -r1.1098
  --- CHANGES   1998/10/03 16:49:30 1.1097
  +++ CHANGES   1998/10/03 19:28:16 1.1098
  @@ -1,5 +1,7 @@
   Changes with Apache 1.3.3
   
  +  *) PORT: DRS 6000 machine. [Paul Debleecker <[EMAIL PROTECTED]>]
  +
 *) Add the server signature text (from the core ServerSignature directive)
to the list of envariables available to scripts, SSI, and the like.
[Ken Coar]
  
  
  
  1.297 +6 -0  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.296
  retrieving revision 1.297
  diff -u -r1.296 -r1.297
  --- Configure 1998/09/30 15:48:07 1.296
  +++ Configure 1998/10/03 19:28:17 1.297
  @@ -708,6 +708,12 @@
   DEF_WANTHSREGEX=yes
   LIBS="$LIBS -lsocket -lnsl -lc -L/usr/ucblib -lucb"
   ;;
  +drs6000*)
  +OS='DRS6000'
  +CFLAGS="$CFLAGS -DSVR4"
  +DEF_WANTHSREGEX=yes
  +LIBS="$LIBS -lsocket -lnsl -lc -L/usr/ucblib -lucb"
  +;;
   *) # default: Catch systems we don't know about
   OS='Unknown and unsupported OS'
echo Sorry, but we cannot grok \"$PLAT\"
  
  
  
  1.49  +5 -0  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- GuessOS   1998/09/30 15:48:08 1.48
  +++ GuessOS   1998/10/03 19:28:19 1.49
  @@ -247,8 +247,13 @@
   *:4.0:2:*)
echo "whatever-unisys-sysv4"; exit 0;
;;
  +
   *:*:dcosx:NILE*)
echo "pyramid-pyramid-svr4"; exit 0;
  + ;;
  +
  +*:*:*:DRS 6000)
  +echo "drs6000-whatever-whatever"; exit 0;
;;
   esac
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-09-30 Thread jim
jim 98/09/30 08:48:09

  Modified:.STATUS
   src  Configure
   src/helpers GuessOS
  Log:
  Fine-time Earle Ake's port for Pyramid DC/OSx and note it in STATUS
  
  Revision  ChangesPath
  1.497 +0 -4  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.496
  retrieving revision 1.497
  diff -u -r1.496 -r1.497
  --- STATUS1998/09/30 14:50:57 1.496
  +++ STATUS1998/09/30 15:48:06 1.497
  @@ -26,10 +26,6 @@
   
   Available Patches:
   
  -* Earle Ake: Apache 1.3.1 port to Pyramid DC/OSx
  -  <[EMAIL PROTECTED]>
  -Status: Jim will followup
  -
   * Patches for the DSO/mod_perl problem (see below for description):
   
 Ralf's "[PATCH] Fix module init"
  
  
  
  1.296 +1 -1  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.295
  retrieving revision 1.296
  diff -u -r1.295 -r1.296
  --- Configure 1998/09/24 10:21:59 1.295
  +++ Configure 1998/09/30 15:48:07 1.296
  @@ -612,7 +612,7 @@
DEF_WANTHSREGEX=yes
LIBS="$LIBS -lsocket -lnsl -lc"
;;
  -NILE*-*-*DC-OSx*dcosx)
  +pyramid-pyramid-svr4)
OS='SVR4'
CFLAGS="$CFLAGS -DSVR4 -DNO_LONG_DOUBLE"
DEF_WANTHSREGEX=yes
  
  
  
  1.48  +3 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- GuessOS   1998/09/28 20:04:35 1.47
  +++ GuessOS   1998/09/30 15:48:08 1.48
  @@ -247,7 +247,9 @@
   *:4.0:2:*)
echo "whatever-unisys-sysv4"; exit 0;
;;
  -
  +*:*:dcosx:NILE*)
  + echo "pyramid-pyramid-svr4"; exit 0;
  + ;;
   esac
   
   #
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-09-28 Thread jim
jim 98/09/28 13:04:35

  Modified:src  CHANGES
   src/helpers GuessOS
  Log:
  Submitted by: Steve Cameron <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.1082+5 -2  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1081
  retrieving revision 1.1082
  diff -u -r1.1081 -r1.1082
  --- CHANGES   1998/09/26 00:07:06 1.1081
  +++ CHANGES   1998/09/28 20:04:33 1.1082
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.3
  - 
  +
  +  *) PORT: Allow GuessOS to recognize Unixware 7.0.1 [Steve Cameron
  + <[EMAIL PROTECTED]>]
  +
 *) Reconstructed the loop through multiple htaccess file names so
that missing files are not confused with unreadable files.
[Roy Fielding]
  @@ -7,7 +10,7 @@
 *) The ap_pfopen and ap_pfdopen routines were failing to protect the
errno on an error, which leads to one error being mistaken for
another when reading non-existant .htaccess files.
  - [Jim Jagielski, Roy Fielding]
  + [Jim Jagielski]
   
 *) OS/2: The new header tests get things right, need to update
ap_config.h.  [Brian Havard]
  
  
  
  1.47  +5 -3  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- GuessOS   1998/09/16 20:49:23 1.46
  +++ GuessOS   1998/09/28 20:04:35 1.47
  @@ -53,9 +53,11 @@
echo "whatever-whatever-unixware1"; exit 0
;;
5)
  - if [ "x$VERSION" = "x7" ]; then
  - echo "${MACHINE}-whatever-unixware7"; exit 0
  - fi
  + case "$VERSION" in
  + 7*)
  + echo "${MACHINE}-whatever-unixware7"; exit 0
  + ;;
  + esac
;;
esac
   fi
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS MakeEtags PrintPath PrintPathOS2 TestCompile buildinfo.sh checkheader.sh findcpp.sh fmn.sh install.sh mkdir.sh mkshadow.sh ppl.sh slo.sh

1998-09-16 Thread jim
jim 98/09/16 13:49:28

  Modified:src/helpers GuessOS MakeEtags PrintPath PrintPathOS2
TestCompile buildinfo.sh checkheader.sh findcpp.sh
fmn.sh install.sh mkdir.sh mkshadow.sh ppl.sh
slo.sh
  Log:
  Add blame and LICENSE info to various helper scripts. Who knows, maybe
  people can use 'em :)
  
  Revision  ChangesPath
  1.46  +6 -4  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- GuessOS   1998/09/15 19:47:39 1.45
  +++ GuessOS   1998/09/16 20:49:23 1.46
  @@ -3,10 +3,12 @@
   # Simple OS/Platform guesser. Similar to config.guess but
   # much, much smaller. Since it was developed for use with
   # Apache, it follows under Apache's regular licensing
  -# with one specific addition: Any changes or additions
  -# to this script should be Emailed to the Apache
  -# group ([EMAIL PROTECTED]) in general and to
  -# Jim Jagielski ([EMAIL PROTECTED]) in specific.
  +# (see http://www.apache.org/docs/LICENSE)  with one specific
  +# addition: Any changes or additions to this script should be
  +# Emailed to the Apache group ([EMAIL PROTECTED]) in general
  +# and to Jim Jagielski ([EMAIL PROTECTED]) in specific.
  +#
  +# Blame Jim; he wrote it (plus a cast of dozens)
   #
   # Be as similar to the output of config.guess/config.sub
   # as possible.
  
  
  
  1.2   +3 -0  apache-1.3/src/helpers/MakeEtags
  
  Index: MakeEtags
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/MakeEtags,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MakeEtags 1998/07/14 20:25:15 1.1
  +++ MakeEtags 1998/09/16 20:49:23 1.2
  @@ -5,6 +5,9 @@
   #   > helpers/MakeEtags
   # and will create a TAGS file in the src directory.
   
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +
   # Once you have created src/TAGS in emacs you'll need to setup
   # tag-table-alist with an entry to assure it finds the single src/TAGS
   # file from the many source directories.  Something along these lines:
  
  
  
  1.12  +5 -0  apache-1.3/src/helpers/PrintPath
  
  Index: PrintPath
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPath,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- PrintPath 1998/08/03 21:51:40 1.11
  +++ PrintPath 1998/09/16 20:49:23 1.12
  @@ -10,6 +10,11 @@
   # Usage:
   #  PrintPath [-s] [-pPATHNAME] program [program ...]
   #
  +# Blame Jim; he wrote it.
  +#
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +
   ##
   # Some "constants"
   ##
  
  
  
  1.5   +5 -0  apache-1.3/src/helpers/PrintPathOS2
  
  Index: PrintPathOS2
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/PrintPathOS2,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PrintPathOS2  1998/08/03 21:51:40 1.4
  +++ PrintPathOS2  1998/09/16 20:49:24 1.5
  @@ -10,6 +10,11 @@
   # Usage:
   #  PrintPath [-s] [-pPATHNAME] program [program ...]
   #
  +# Blame Jim; he wrote it (with major OS2 help from Brian H.)
  +#
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +#
   ##
   # Some "constants"
   ##
  
  
  
  1.15  +5 -0  apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/TestCompile,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- TestCompile   1998/08/03 21:51:40 1.14
  +++ TestCompile   1998/09/16 20:49:24 1.15
  @@ -32,6 +32,11 @@
   # located) if you want to test it out. Configure must
   # also call it as './helpers/TestCompile'
   #
  +# Blame Jim; he wrote it (along with a cast of dozens).
  +#
  +# This script falls under the Apache License.
  +# See http://www.apache.org/docs/LICENSE
  +
   
   cd ./helpers
   
  
  
  
  1.2   +4 -0  apache-1.3/src/helpers/buildinfo.sh
  
  Index: buildinfo.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/buildinfo.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildinfo.sh  1998/08/25 09:52:40 1.1
  +++ buildinfo.sh  1998/09/16 20:49:24 1.2
  @@ -4,6 +4,10 @@
   ##  Written by Ralf S. Engelschall <[EMAIL PROTECTED]>
   ##  for the Apache's Autoconf-style Interface (APAC

cvs commit: apache-1.3/src/helpers GuessOS

1998-06-29 Thread rse
rse 98/06/29 05:21:04

  Modified:src  CHANGES Configure
   src/helpers GuessOS
  Log:
  PORT: Add UnixWare 7 support
  
  Submitted by: Vadim Kostoglodoff <[EMAIL PROTECTED]>
  Reviewed and fixed (UW=7 -> UW=700) by: Ralf S. Engelschall
  PR: 2463
  
  Revision  ChangesPath
  1.939 +3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.938
  retrieving revision 1.939
  diff -u -r1.938 -r1.939
  --- CHANGES   1998/06/29 12:10:51 1.938
  +++ CHANGES   1998/06/29 12:21:01 1.939
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) PORT: Add UnixWare 7 support
  + [Vadim Kostoglodoff <[EMAIL PROTECTED]>] PR#2463
  +
 *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
used instead of "$PERL" which contains the correctly determined Perl
interpreter (important for instance on systems where "perl" and "perl5"
  
  
  
  1.270 +6 -0  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.269
  retrieving revision 1.270
  diff -u -r1.269 -r1.270
  --- Configure 1998/06/29 12:10:52 1.269
  +++ Configure 1998/06/29 12:21:02 1.270
  @@ -584,6 +584,12 @@
LIBS="$LIBS -lsocket -lnsl -lcrypt -lgen"
DBM_LIB=""
;;
  +*-unixware7)
  + OS='UnixWare 7'
  + CFLAGS="$CFLAGS -DUW=700"
  + LIBS="$LIBS -lsocket -lnsl -lcrypt -lgen"
  + DBM_LIB=""
  + ;;
   maxion-*-sysv4*)
OS='SVR4'
CFLAGS="$CFLAGS -DSVR4"
  
  
  
  1.43  +5 -0  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- GuessOS   1998/06/13 22:36:47 1.42
  +++ GuessOS   1998/06/29 12:21:04 1.43
  @@ -50,6 +50,11 @@
4.2)
echo "whatever-whatever-unixware1"; exit 0
;;
  + 5)
  + if [ "x$VERSION" = "x7" ]; then
  + echo "${MACHINE}-whatever-unixware7"; exit 0
  + fi
  + ;;
esac
   fi
   fi
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-13 Thread brian
brian   98/06/13 15:36:48

  Modified:src/helpers GuessOS
  Log:
  "intel" is unfair to other vendors.
  
  Revision  ChangesPath
  1.42  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- GuessOS   1998/06/10 08:15:11 1.41
  +++ GuessOS   1998/06/13 22:36:47 1.42
  @@ -187,7 +187,7 @@
;;
   
   *:4.0:3.0:[345][0-9]?? | *:4.0:3.0:3[34]??[/,]* | library:*)
  - echo "intel-ncr-sysv4"; exit 0
  + echo "x86-ncr-sysv4"; exit 0
;;
   
   ULTRIX:*)
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-10 Thread dgaudet
dgaudet 98/06/10 01:15:11

  Modified:src  CHANGES
   src/helpers GuessOS
  Log:
  update to properly support 32-bit qnx
  
  PR:   2390
  Submitted by: Sean Boudreau <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.905 +6 -2  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.904
  retrieving revision 1.905
  diff -u -r1.904 -r1.905
  --- CHANGES   1998/06/09 12:59:18 1.904
  +++ CHANGES   1998/06/10 08:15:09 1.905
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
  -  
  +
  +  *) PORT: QNX update to properly guess 32-bit systems.
  + [Sean Boudreau <[EMAIL PROTECTED]>] PR#2390
  +
 *) Make sure the DSO emulation code for HPUX finds the proprietary 
shl_xxx()
functions which are in libdld under HPUX 9/10.
[Ralf S. Engelschall] PR#2378
  @@ -29,7 +32,8 @@
   
 *) mod_usertrack was corrupting the client hostname.  As part of the
fix, the cookie values were slightly extended to include the
  - fully qualified hostname of the client.  [Dean Gaudet] PR#2229, 2366
  + fully qualified hostname of the client.
  + [Dean Gaudet] PR#2190, 2229, 2366
   
 *) Fix a typo in pool debugging code.  [Alvaro Martinez Echevarria]
   
  
  
  
  1.41  +5 -8  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- GuessOS   1998/06/08 17:04:02 1.40
  +++ GuessOS   1998/06/10 08:15:11 1.41
  @@ -139,14 +139,11 @@
;;
   
   QNX:*)
  - case "$VERSION" in
  - 423)
  - echo "${MACHINE}-qssl-qnx32"
  - ;;
  - *)
  - echo "${MACHINE}-qssl-qnx"
  - ;;
  - esac
  + if [ "$VERSION" -gt 422 ]; then
  + echo "${MACHINE}-qssl-qnx32"
  + else
  + echo "${MACHINE}-qssl-qnx"
  + fi
exit 0
;;
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-08 Thread brian
brian   98/06/08 10:04:03

  Modified:src/helpers GuessOS
  Log:
  Based on private mail with [EMAIL PROTECTED] (Bill Houle),
  where he said (quoting me)
  
  On Jun 7, 11:52am, Brian Behlendorf wrote:
  } >I can't see why you'd ever want $MACHINE to be variable since
  } >all NCR boxes are generic SVR4. I don't see why you couldn't
  } >just move the 'library' test to the list of i486-ncr-sysv4
  } >above
  }
  } Hmm, true.  Or at least move them next to each other so it's obvious.  I
  } don't want to break something if there's a reason they're separate like 
that.
  }
  } >PS: Should I be anal-retentive and point out that most systems
  } >these days are Pentium based rather than 486, or is 'i486' simply
  } >a convention with no real CPU significance? 'intel' might be a
  } >better (more generic) designation, and I'm sure this applies to
  } >non-NCR systems as well.
  }
  } I don't think it has any significance in the code - what does "uname -m"
  } result in on your systems?
  
  You ready for a good laugh? On the machine I am on this moment,
  it returns '3435'. On the machine I compiled Apache on Fri night,
  it returned '5648'. NCR MP-RAS stupidly reports the *model number*
  of the machine it is running on; ditto for `arch`. Thus, `uname -m`
  is going to be all over the map depending on the class of box.
  
  That is why I said all NCR tests -- including the "library" test --
  should probably result in "i486" rather than the machine 'type'(sic).
  Or, better yet, "intel" if there's no significance to 'i486' other
  than as a generic x86 label.
  
  Revision  ChangesPath
  1.40  +2 -6  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- GuessOS   1998/06/07 18:44:22 1.39
  +++ GuessOS   1998/06/08 17:04:02 1.40
  @@ -189,12 +189,8 @@
echo "${MACHINE}-whatever-sysv4"; exit 0
;;
   
  -*:4.0:3.0:[345][0-9]?? | *:4.0:3.0:3[34]??[/,]*)
  - echo "i486-ncr-sysv4"; exit 0
  - ;;
  -
  -library:*)
  - echo "${MACHINE}-ncr-sysv4"; exit 0
  +*:4.0:3.0:[345][0-9]?? | *:4.0:3.0:3[34]??[/,]* | library:*)
  + echo "intel-ncr-sysv4"; exit 0
;;
   
   ULTRIX:*)
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-07 Thread brian
brian   98/06/07 11:44:23

  Modified:src/helpers GuessOS
  Log:
  move the two related to ncr-svr4 next to each other; I'm seeing if the two 
could
  be collapsed into one.
  
  Revision  ChangesPath
  1.39  +4 -4  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- GuessOS   1998/06/06 19:21:21 1.38
  +++ GuessOS   1998/06/07 18:44:22 1.39
  @@ -193,6 +193,10 @@
echo "i486-ncr-sysv4"; exit 0
;;
   
  +library:*)
  + echo "${MACHINE}-ncr-sysv4"; exit 0
  + ;;
  +
   ULTRIX:*)
echo "${MACHINE}-unknown-ultrix"; exit 0
;;
  @@ -208,10 +212,6 @@
   machten:*)
  echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
  ;;
  -
  -library:*)
  - echo "${MACHINE}-ncr-sysv4"; exit 0
  - ;;
   
   ConvexOS:*:11.*:*)
echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-06 Thread dgaudet
dgaudet 98/06/06 12:21:22

  Modified:src  CHANGES
   src/helpers GuessOS
  Log:
  brian lost another NCR patch I applied a few days ago
  
  Revision  ChangesPath
  1.889 +3 -2  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.888
  retrieving revision 1.889
  diff -u -r1.888 -r1.889
  --- CHANGES   1998/06/05 17:33:47 1.888
  +++ CHANGES   1998/06/06 19:21:20 1.889
  @@ -19,8 +19,9 @@
 *) PORT: F_NDELAY is a typo, should have been FNDELAY.  There's also
O_NDELAY on various systems.  [Dave Dykstra <[EMAIL PROTECTED]>] PR#2313
   
  -  *) PORT: SVR4 v3.0.1 running on ncr S10 (3404) host.
  - [juerg schreiner <[EMAIL PROTECTED]>] PR#2310
  +  *) PORT: helpers/GuessOS updates for various versions for NCR SVR4.
  + [juerg schreiner <[EMAIL PROTECTED]>,
  + Bill Houle <[EMAIL PROTECTED]>] PR#2310
   
 *) Fix recently introduced Win32 child spawning code in mod_rewrite.c which
was broken because of invalid ap_pstrcat() -> strcat() transformation.
  
  
  
  1.38  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- GuessOS   1998/06/06 15:43:30 1.37
  +++ GuessOS   1998/06/06 19:21:21 1.38
  @@ -189,7 +189,7 @@
echo "${MACHINE}-whatever-sysv4"; exit 0
;;
   
  -*:4.0:3.0:[345][0-9]?? | *:4.0:3.0:3[34]??,*)
  +*:4.0:3.0:[345][0-9]?? | *:4.0:3.0:3[34]??[/,]*)
echo "i486-ncr-sysv4"; exit 0
;;
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-06 Thread brian
brian   98/06/06 08:43:31

  Modified:src/helpers GuessOS
  Log:
  Submitted by: Bill Houle <[EMAIL PROTECTED]>
  
  Slight NCR-SVR4 tweak.
  
  Revision  ChangesPath
  1.37  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- GuessOS   1998/06/04 20:13:16 1.36
  +++ GuessOS   1998/06/06 15:43:30 1.37
  @@ -189,7 +189,7 @@
echo "${MACHINE}-whatever-sysv4"; exit 0
;;
   
  -*:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??[/,]*)
  +*:4.0:3.0:[345][0-9]?? | *:4.0:3.0:3[34]??,*)
echo "i486-ncr-sysv4"; exit 0
;;
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-06-04 Thread dgaudet
dgaudet 98/06/04 12:49:28

  Modified:src  CHANGES
   src/helpers GuessOS
  Log:
  SVR4 v3.0.1 running on ncr S10 (3404) host.
  
  PR:   2310
  Submitted by: juerg schreiner <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.883 +3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.882
  retrieving revision 1.883
  diff -u -r1.882 -r1.883
  --- CHANGES   1998/06/03 12:12:10 1.882
  +++ CHANGES   1998/06/04 19:49:25 1.883
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) PORT: SVR4 v3.0.1 running on ncr S10 (3404) host.
  + [juerg schreiner <[EMAIL PROTECTED]>] PR#2310
  +
 *) Fix recently introduced Win32 child spawning code in mod_rewrite.c which
was broken because of invalid ap_pstrcat() -> strcat() transformation.
[Ralf S. Engelschall]
  
  
  
  1.35  +1 -1  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- GuessOS   1998/02/21 15:00:41 1.34
  +++ GuessOS   1998/06/04 19:49:27 1.35
  @@ -189,7 +189,7 @@
echo "${MACHINE}-whatever-sysv4"; exit 0
;;
   
  -*:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
  +*:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??[/,]*)
echo "i486-ncr-sysv4"; exit 0
;;
   
  
  
  


cvs commit: apache-1.3/src/helpers GuessOS

1998-02-21 Thread jim
jim 98/02/21 07:00:41

  Modified:src  CHANGES Configure
   src/helpers GuessOS
  Log:
  PR: 1450
  Obtained from: Andrey Chernov <[EMAIL PROTECTED]>
  Submitted by: Jim
  Make Configure and GuessOS aware of FreeBSD versions. If version 3,
  then we handle the fact that char's aren't unsigned and that FreeBSD3
  has a good system regex package. Earler versions are unaffected.
  
  Revision  ChangesPath
  1.650 +4 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.649
  retrieving revision 1.650
  diff -u -r1.649 -r1.650
  --- CHANGES   1998/02/21 12:26:20 1.649
  +++ CHANGES   1998/02/21 15:00:37 1.650
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3b6
   
  +  *) [PORT] Recognize FreeBSD-3 so we can use the OS regex as well
  + as handling unsigned-chars [Andrey Chernov <[EMAIL PROTECTED]>
  + and Jim] PR#1450
  +
 *) Use SA_RESETHAND or SA_ONESHOT when installing the coredump handlers.
In particular the handlers could trigger themselves into an infinite
loop if RLimitMem was used with a small amount of memory -- too small
  
  
  
  1.186 +13 -6 apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.185
  retrieving revision 1.186
  diff -u -r1.185 -r1.186
  --- Configure 1998/02/14 13:43:59 1.185
  +++ Configure 1998/02/21 15:00:38 1.186
  @@ -358,7 +358,14 @@
DB_LIB=""
;;
   *-freebsd*)
  - OS='FreeBSD'
  + PLATOSVERS=`echo $PLAT | sed 's/^.*freebsd//'`
  + OS='FreeBSD $PLATOSVERS'
  + case "$PLATOSVERS" in
  + 3*)
  + DEF_WANTHSREGEX=no
  + CFLAGS="$CFLAGS -funsigned-char"
  + ;;
  + esac
LIBS="$LIBS -lcrypt"
DBM_LIB=""
DB_LIB=""
  @@ -413,17 +420,17 @@
DEF_WANTHSREGEX=no
;;
   *-solaris2*)
  - SOLVER=`echo $PLAT | sed 's/^.*solaris2.//'`
  - OS="Solaris $SOLVER"
  - CFLAGS="$CFLAGS -DSOLARIS2=$SOLVER"
  + PLATOSVERS=`echo $PLAT | sed 's/^.*solaris2.//'`
  + OS="Solaris $PLATOSVERS"
  + CFLAGS="$CFLAGS -DSOLARIS2=$PLATOSVERS"
LIBS="$LIBS -lsocket -lnsl"
  - case "$SOLVER" in
  + case "$PLATOSVERS" in
2[56789]*)
LIBS="$LIBS -lpthread"
;;
esac
DBM_LIB=""
  - case "$SOLVER" in
  + case "$PLATOSVERS" in
2[01234]*)
DEF_WANTHSREGEX=yes
;;
  
  
  
  1.34  +4 -2  apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- GuessOS   1998/01/13 23:11:06 1.33
  +++ GuessOS   1998/02/21 15:00:41 1.34
  @@ -113,11 +113,13 @@
;;
   
   FreeBSD:*:*:*486*)
  - echo "i486-whatever-freebsd"; exit 0
  + FREEBSDVERS=`echo ${RELEASE}|sed -e 's/[-(].*//'`
  + echo "i486-whatever-freebsd${FREEBSDVERS}"; exit 0
;;
   
   FreeBSD:*)
  - echo "${MACHINE}-whatever-freebsd"; exit 0
  + FREEBSDVERS=`echo ${RELEASE}|sed -e 's/[-(].*//'`
  + echo "${MACHINE}-whatever-freebsd${FREEBSDVERS}"; exit 0
;;
   
   NetBSD:*:*:*486*)