diff options
author | jlam <jlam@pkgsrc.org> | 2006-06-08 04:48:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-06-08 04:48:35 +0000 |
commit | da66cb0fa8f1308f1aff857fc218014bf719ecea (patch) | |
tree | a52ff19221e150e0ed60f623b79f9b6c47a0cb1a /audio/jack | |
parent | ded1879f6b38900c9c947f5ffafd2612124ce276 (diff) | |
download | pkgsrc-da66cb0fa8f1308f1aff857fc218014bf719ecea.tar.gz |
The jack configure script has a bogus check to try to find the "real"
readline library by looking for <readline/chardefs.h>. However, the
jack_transport sources only use the basic readline functionality that
is already supported by editline. Fix this situation lying to the
configure script and pretending that editline is readline by forcing
the chardefs.h header to be "found". This fixes the breakage in
krister's bulk build from 2006-05-28.
Diffstat (limited to 'audio/jack')
-rw-r--r-- | audio/jack/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/jack/Makefile b/audio/jack/Makefile index 0140ac88275..3c872a4074a 100644 --- a/audio/jack/Makefile +++ b/audio/jack/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2006/05/18 20:29:58 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2006/06/08 04:48:35 jlam Exp $ # DISTNAME= jack-audio-connection-kit-0.100.0 @@ -17,6 +17,7 @@ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= pkg-config GNU_CONFIGURE= yes +CONFIGURE_ENV+= ac_cv_header_readline_chardefs_h=yes PKGCONFIG_OVERRIDE+= jack.pc.in |