brian 96/10/07 23:26:32
Modified: src Configure
Log:
Reviewed by: Rasmus Lerdorf <[EMAIL PROTECTED]>, Jim Jagielski <[EMAIL
PROTECTED]>, Ben Laurie <[EMAIL PROTECTED]>
Two platforms have busted regex implementations and thus require the regex
package bundled with Apache. More platforms to follow.
Revision Changes Path
1.25 +3 -1 apache/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache/src/Configure,v
retrieving revision 1.24
retrieving revision 1.25
diff -C3 -r1.24 -r1.25
*** Configure 1996/10/01 14:31:23 1.24
--- Configure 1996/10/08 06:26:30 1.25
***************
*** 1,5 ****
#!/bin/sh
! # $Id: Configure,v 1.24 1996/10/01 14:31:23 chuck Exp $
trap 'rm $tmpfile; exit' 0 1 2 3 15
# Apache configuration script, first cut --- rst.
--- 1,5 ----
#!/bin/sh
! # $Id: Configure,v 1.25 1996/10/08 06:26:30 brian Exp $
trap 'rm $tmpfile; exit' 0 1 2 3 15
# Apache configuration script, first cut --- rst.
***************
*** 184,189 ****
--- 184,190 ----
fi
;;
*-linux*)
+ DEF_WANTHSREGEX=yes
OS='Linux'
CFLAGS="$CFLAGS -DLINUX"
;;
***************
*** 246,251 ****
--- 247,253 ----
CFLAGS="$CFLAGS -DSUNOS4"
;;
*-unixware*)
+ DEF_WANTHSREGEX=yes
OS='Unixware'
CFLAGS="$CFLAGS -DSVR4"
LIBS="$LIBS -lsocket -lnsl -lcrypt"