dgaudet 97/09/15 20:59:59
Modified: src CHANGES
src/helpers GuessOS
Log:
Unisys SVR4 support ... which has a brain damaged uname. I modified
Steven's original patch so that this hack is way down at the bottom
of the guesses.
Submitted by: "Kaufman, Steven E" <Steven.Kaufman@unisys.com>
Reviewed by: Dean Gaudet
Revision Changes Path
1.442 +3 -0 apachen/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apachen/src/CHANGES,v
retrieving revision 1.441
retrieving revision 1.442
diff -u -r1.441 -r1.442
--- CHANGES 1997/09/14 10:30:53 1.441
+++ CHANGES 1997/09/16 03:59:56 1.442
@@ -1,4 +1,7 @@
Changes with Apache 1.3b1
+
+ *) PORT: Support Unisys SVR4, whose uname returns mostly useless data.
+ ["Kaufman, Steven E" <Steven.Kaufman@unisys.com>]
*) Inetd mode (which is buggy) uses timeouts without having setup the
jmpbuffer. [Dean Gaudet] PR#1064
1.30 +4 -0 apachen/src/helpers/GuessOS
Index: GuessOS
===================================================================
RCS file: /export/home/cvs/apachen/src/helpers/GuessOS,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- GuessOS 1997/09/02 23:08:51 1.29
+++ GuessOS 1997/09/16 03:59:59 1.30
@@ -215,6 +215,10 @@
echo "arm-whatever-riscix"; exit 0;
;;
+ *:4.0:2:*)
+ echo "whatever-unisys-sysv4"; exit 0;
+ ;;
+
esac
#
|