rse 00/02/05 06:15:46
Modified: src CHANGES Configure
Log:
PORT: Add support for Amdahl UTS 4.3 and later.
Submitted by: Dave Dykstra <[EMAIL PROTECTED]>
PR: 5654
Revision Changes Path
1.1510 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1509
retrieving revision 1.1510
diff -u -r1.1509 -r1.1510
--- CHANGES 2000/02/05 12:33:13 1.1509
+++ CHANGES 2000/02/05 14:15:41 1.1510
@@ -1,5 +1,8 @@
Changes with Apache 1.3.12
+ *) PORT: Add support for Amdahl UTS 4.3 and later.
+ [Dave Dykstra <[EMAIL PROTECTED]>] PR#5654
+
*) Make implementation/descriptions of the FLAG directives
AuthAuthoritative, MetaFiles and ExtendedStatus consistent with
documentation and the standard way of implementation those directives.
1.392 +11 -4 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.391
retrieving revision 1.392
diff -u -r1.391 -r1.392
--- Configure 2000/01/20 02:54:54 1.391
+++ Configure 2000/02/05 14:15:42 1.392
@@ -676,10 +676,17 @@
LIBS="$LIBS -lPW"
;;
*-uts*)
- OS='Amdahl UTS'
- CFLAGS="$CFLAGS -Xa -eft -DUTS21 -DUSEBCOPY"
- LIBS="$LIBS -lsocket -lbsd -la"
- DEF_WANTHSREGEX=yes
+ PLATOSVERS=`echo $PLAT | sed 's/^.*,//'`
+ OS='Amdahl UTS $PLATOSVERS'
+ case "$PLATOSVERS" in
+ 2*) CFLAGS="$CFLAGS -Xa -eft -DUTS21 -DUSEBCOPY"
+ LIBS="$LIBS -lsocket -lbsd -la"
+ DEF_WANTHSREGEX=yes
+ ;;
+ *) CFLAGS="$CFLAGS -Xa -DSVR4"
+ LIBS="$LIBS -lsocket -lnsl"
+ ;;
+ esac
;;
*-ultrix)
OS='ULTRIX'