diff options
author | schwarz <schwarz@pkgsrc.org> | 2006-01-29 16:57:31 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2006-01-29 16:57:31 +0000 |
commit | efa10ed809415db7b988992831e4e53c6cba06e0 (patch) | |
tree | 8e25b6ea55d2d23ebee58c887e3b1e0c333db55e /www/libwww | |
parent | 1f9af4f91a1225f84fd7dad7b8cca5ecf08e0240 (diff) | |
download | pkgsrc-efa10ed809415db7b988992831e4e53c6cba06e0.tar.gz |
IRIX 5 does not have libregex
Diffstat (limited to 'www/libwww')
-rw-r--r-- | www/libwww/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/libwww/Makefile b/www/libwww/Makefile index f3b50e4f9f6..539708a7d42 100644 --- a/www/libwww/Makefile +++ b/www/libwww/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2005/12/05 23:55:23 rillig Exp $ +# $NetBSD: Makefile,v 1.65 2006/01/29 16:57:31 schwarz Exp $ DISTNAME= w3c-libwww-5.4.0 PKGNAME= libwww-5.4.0 @@ -22,7 +22,7 @@ USE_TOOLS+= gmake perl USE_LIBTOOL= YES GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --with-zlib --with-regex --without-x +CONFIGURE_ARGS+= --with-zlib --without-x CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q} # Avoid an ICE in gcc2 on sparc64 @@ -42,6 +42,11 @@ pre-configure: .include "../../mk/bsd.prefs.mk" +.if empty(LOWER_OPSYS:Mirix5*) +# IRIX 5 does not have libregex +CONFIGURE_ARGS+= --with-regex +.endif + .if ${OPSYS} == "SunOS" # Solaris has a /usr/lib/libmd5 which seems to be enouth, and # /usr/local/lib/libmd5 breaks /usr/lib/librt |