pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/jack



Module Name:    pkgsrc
Committed By:   tnn
Date:           Tue Apr 12 12:31:18 UTC 2022

Modified Files:
        pkgsrc/audio/jack: Makefile

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/audio/jack/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/jack/Makefile
diff -u pkgsrc/audio/jack/Makefile:1.50 pkgsrc/audio/jack/Makefile:1.51
--- pkgsrc/audio/jack/Makefile:1.50     Mon Mar 28 10:43:33 2022
+++ pkgsrc/audio/jack/Makefile  Tue Apr 12 12:31:18 2022
@@ -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"



Home | Main Index | Thread Index | Old Index