Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id B8FD51A921F for ; Tue, 12 Apr 2022 12:46:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EEDFF84E6E; Tue, 12 Apr 2022 12:46:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7CCF484F6F for ; Tue, 12 Apr 2022 12:31:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7XqBZnbF7UP6 for ; Tue, 12 Apr 2022 12:31:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 97FF184F6B for ; Tue, 12 Apr 2022 12:31:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8F95BFB24; Tue, 12 Apr 2022 12:31:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164976667839390" MIME-Version: 1.0 Date: Tue, 12 Apr 2022 12:31:18 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/audio/jack To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220412123118.8F95BFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164976667839390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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. --_----------=_164976667839390 Content-Disposition: inline Content-Length: 870 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii 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" --_----------=_164976667839390--