diff options
author | tron <tron@pkgsrc.org> | 2013-03-30 22:21:10 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-03-30 22:21:10 +0000 |
commit | b60cac501b69e46740190c2bc7cc35ab4a366e93 (patch) | |
tree | 3cf2d42506baa9bfa3a031150764ffda1295c77c /net/libpcap | |
parent | 9d0488c08627e089fc35e56f23c984557b12db78 (diff) | |
download | pkgsrc-b60cac501b69e46740190c2bc7cc35ab4a366e93.tar.gz |
This package needs "flex" not just any "lex" to build properly. Otherwise
it will fallback to "yacc" (instead of "bison") and the library will
not link properly. This problem is probably only visible under Solaris
where "lex" is not "flex".
Bump package revision because of this fix.
Diffstat (limited to 'net/libpcap')
-rw-r--r-- | net/libpcap/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/libpcap/Makefile b/net/libpcap/Makefile index 77a60d92cb4..2df5015e588 100644 --- a/net/libpcap/Makefile +++ b/net/libpcap/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.52 2013/02/06 19:30:54 jperkin Exp $ +# $NetBSD: Makefile,v 1.53 2013/03/30 22:21:10 tron Exp $ DISTNAME= libpcap-1.3.0 -PKGREVISION= 1 +PKGREVISION= 2 SVR4_PKGNAME= lpcap CATEGORIES= net MASTER_SITES= http://www.tcpdump.org/release/ @@ -16,7 +16,7 @@ NOT_FOR_PLATFORM+= Interix-*-* # no raw interface access PKG_INSTALLATION_TYPES= overwrite pkgviews USE_LIBTOOL= yes -USE_TOOLS+= bison gm4 lex +USE_TOOLS+= bison flex gm4 GNU_CONFIGURE= yes .include "../../mk/bsd.prefs.mk" |