diff options
author | jmc <jmc@pkgsrc.org> | 2003-04-16 12:53:46 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2003-04-16 12:53:46 +0000 |
commit | 05b93bf981a8e06e12228575d35331d83e98acb8 (patch) | |
tree | a40bcf7cbb0a82fdcf7736c6e4e2b6d99755cf8f /net | |
parent | 7ce4cab67cc2f02c34ebb8ba265642609c1678c1 (diff) | |
download | pkgsrc-05b93bf981a8e06e12228575d35331d83e98acb8.tar.gz |
On solaris use gsed's buildlink2 to provide sed to configure/etc (it requires
GNU sed)
Diffstat (limited to 'net')
-rw-r--r-- | net/ethereal/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/ethereal/Makefile b/net/ethereal/Makefile index 381c89b4d96..b64f2bff244 100644 --- a/net/ethereal/Makefile +++ b/net/ethereal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.72 2003/03/12 15:10:45 salo Exp $ +# $NetBSD: Makefile,v 1.73 2003/04/16 12:53:46 jmc Exp $ # DISTNAME= ethereal-0.9.11 @@ -24,6 +24,11 @@ CONFIGURE_ARGS+= --with-net-snmp=${BUILDLINK_PREFIX.net-snmp} CONFIGURE_ARGS+= --with-pcap=${BUILDLINK_PREFIX.libpcap} CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib} +# It really wants gnu sed or xpg4/bin/sed on solaris. +.if ${OPSYS} == SunOS +.include "../../textproc/gsed/buildlink2.mk" +.endif + .include "../../devel/zlib/buildlink2.mk" .include "../../net/libpcap/buildlink2.mk" .include "../../net/net-snmp/buildlink2.mk" |