diff options
author | hans <hans@pkgsrc.org> | 2012-03-21 18:40:00 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-03-21 18:40:00 +0000 |
commit | cc3be83c87ea69d638635b80354aff3af42805f2 (patch) | |
tree | 61d60a3c0dde7bf7b7d02f3e665d86dd1d6404be /devel/libthrift | |
parent | f18e5214337408e155ecffe947800fc413f41b2c (diff) | |
download | pkgsrc-cc3be83c87ea69d638635b80354aff3af42805f2.tar.gz |
Override configure check for the flex library.
This package would normally use bison-yacc and flex, but the files it
needs come pre-generated in the distfile. So flex and bison-yacc aren't
actually used, and linking against the library can cause the build to
fail with unresolved symbols.
Diffstat (limited to 'devel/libthrift')
-rw-r--r-- | devel/libthrift/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/libthrift/Makefile b/devel/libthrift/Makefile index 5c80f290fcb..ee3b52d8790 100644 --- a/devel/libthrift/Makefile +++ b/devel/libthrift/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2012/03/09 14:31:07 fhajny Exp $ +# $NetBSD: Makefile,v 1.16 2012/03/21 18:40:00 hans Exp $ DISTNAME= thrift-${THRIFT_VERSION} PKGNAME= libthrift-${THRIFT_VERSION} @@ -21,6 +21,7 @@ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake pkg-config GNU_CONFIGURE= yes +CONFIGURE_ENV+= LEXLIB="" WRKSRC= ${WRKDIR}/thrift-${THRIFT_VERSION} THRIFT_VERSION= 0.7.0 |