pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/jack jack: fix readline confusion



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f1d585f1d3eb
branches:  trunk
changeset: 376696:f1d585f1d3eb
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Tue Apr 12 12:31:18 2022 +0000

description:
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.

diffstat:

 audio/jack/Makefile |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (23 lines):

diff -r f091040135eb -r f1d585f1d3eb audio/jack/Makefile
--- a/audio/jack/Makefile       Tue Apr 12 11:50:33 2022 +0000
+++ b/audio/jack/Makefile       Tue Apr 12 12:31:18 2022 +0000
@@ -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_TOOLS+=    pkg-config bash
 
 WAF_ARGS+=     --systemd=no
+WAF_ARGS+=     --readline=no
 
 .include "../../mk/bsd.prefs.mk"
 
@@ -68,4 +69,5 @@
 .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"



Home | Main Index | Thread Index | Old Index