summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2022-04-12 12:31:18 +0000
committertnn <tnn@pkgsrc.org>2022-04-12 12:31:18 +0000
commitd95ed0f771ed5beb7a4f5ba7e6ae2fe2035f849f (patch)
treeae8f6c348a4bf3977c6c5c271d7d62525ee01189
parentcc857ebe46475146208a1c1f75c0915be50d7428 (diff)
downloadpkgsrc-d95ed0f771ed5beb7a4f5ba7e6ae2fe2035f849f.tar.gz
jack: fix readline confusion
It wants readline for tools/transport.c. The configure script checks if -lreadline is needed but doesn't know how to pick up -ledit which results in readline support not being enabled on NetBSD. On other platforms it might detect readline but the build breaks instead. So for now disable readline support universally.
-rw-r--r--audio/jack/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/jack/Makefile b/audio/jack/Makefile
index 2f1a580cae4..b43cbf1139e 100644
--- a/audio/jack/Makefile
+++ b/audio/jack/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.50 2022/03/28 10:43:33 tnn Exp $
+# $NetBSD: Makefile,v 1.51 2022/04/12 12:31:18 tnn Exp $
DISTNAME= jack2-1.9.19
PKGNAME= ${DISTNAME:S/jack2/jack/1}
@@ -17,6 +17,7 @@ USE_LANGUAGES= c c++
USE_TOOLS+= pkg-config bash
WAF_ARGS+= --systemd=no
+WAF_ARGS+= --readline=no
.include "../../mk/bsd.prefs.mk"
@@ -68,4 +69,5 @@ PKGCONFIG_OVERRIDE+= jack.pc.in
.include "../../audio/libopus/buildlink3.mk"
.include "../../audio/libsamplerate/buildlink3.mk"
.include "../../audio/libsndfile/buildlink3.mk"
+#.include "../../mk/readline.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"