jim 97/08/25 17:59:44
Modified: src Configure
Log:
LIBS only needs "-lpthread" with Solaris 2.5.x
Revision Changes Path
1.141 +6 -1 apachen/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apachen/src/Configure,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- Configure 1997/08/24 18:23:58 1.140
+++ Configure 1997/08/26 00:59:40 1.141
@@ -359,7 +359,12 @@
SOLVER=`echo $PLAT | sed -e 's/^.*solaris2.//'`
OS="Solaris $SOLVER"
CFLAGS="$CFLAGS -DSOLARIS2=$SOLVER"
- LIBS="$LIBS -lsocket -lnsl -lpthread"
+ LIBS="$LIBS -lsocket -lnsl"
+ case "$SOLVER" in
+ 25*)
+ LIBS="$LIBS -lpthread"
+ ;;
+ esac
DBM_LIB=""
case "$SOLVER" in
2[0123]*)