Received: by mail.netbsd.org (Postfix, from userid 605) id 3F92E84E00; Mon, 6 Nov 2017 19:01:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BF9ED84D97 for ; Mon, 6 Nov 2017 19:01:45 +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 qAS31WK0uPl9 for ; Mon, 6 Nov 2017 19:01:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 24C8484CE2 for ; Mon, 6 Nov 2017 19:01:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 201B4FBDE; Mon, 6 Nov 2017 19:01:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1509994905219170" MIME-Version: 1.0 Date: Mon, 6 Nov 2017 19:01:45 +0000 From: "Benny Siegert" Subject: CVS commit: [pkgsrc-2017Q3] pkgsrc/devel/flex To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20171106190145.201B4FBDE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1509994905219170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Mon Nov 6 19:01:45 UTC 2017 Modified Files: pkgsrc/devel/flex [pkgsrc-2017Q3]: Makefile Log Message: Pullup ticket #5605 - requested by sevan devel/flex: Linux build fix Revisions pulled up: - devel/flex/Makefile 1.61 --- Module Name: pkgsrc Committed By: triaxx Date: Fri Oct 20 06:22:24 UTC 2017 Modified Files: pkgsrc/devel/flex: Makefile Log Message: Add workaround for fixing build on Linux See https://github.com/westes/flex/issues/241 The problem is fixed in master branch and the workaround could be removed in the next version update. To generate a diff of this commit: cvs rdiff -u -r1.60 -r1.60.4.1 pkgsrc/devel/flex/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1509994905219170 Content-Disposition: inline Content-Length: 747 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/flex/Makefile diff -u pkgsrc/devel/flex/Makefile:1.60 pkgsrc/devel/flex/Makefile:1.60.4.1 --- pkgsrc/devel/flex/Makefile:1.60 Mon Jul 24 14:34:49 2017 +++ pkgsrc/devel/flex/Makefile Mon Nov 6 19:01:44 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2017/07/24 14:34:49 maya Exp $ +# $NetBSD: Makefile,v 1.60.4.1 2017/11/06 19:01:44 bsiegert Exp $ DISTNAME= flex-2.6.4 CATEGORIES= devel lang @@ -32,6 +32,9 @@ LDFLAGS.SCO_SV+= -lsocket # https://github.com/westes/flex/issues/219 CONFIGURE_ENV.NetBSD+= ac_cv_func_reallocarray=no +# https://github.com/westes/flex/issues/241 +CFLAGS.Linux+= -D_GNU_SOURCE + #.if !empty(PKGSRC_RUN_TEST:M[Yy][Ee][Ss]) USE_LANGUAGES= c c++ USE_TOOLS+= bash:build --_----------=_1509994905219170--