Received: by mail.netbsd.org (Postfix, from userid 605) id 3D1EB84DE1; Sun, 1 Apr 2018 20:29:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 984AF84CD9 for ; Sun, 1 Apr 2018 20:29:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xUk1VmebP-pT for ; Sun, 1 Apr 2018 20:29:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D30E084C81 for ; Sun, 1 Apr 2018 20:29:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D08FAFBEC; Sun, 1 Apr 2018 20:29:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1522614578201980" MIME-Version: 1.0 Date: Sun, 1 Apr 2018 20:29:38 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/lang/erlang To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20180401202938.D08FAFBEC@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. --_----------=_1522614578201980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Sun Apr 1 20:29:38 UTC 2018 Modified Files: pkgsrc/lang/erlang: Makefile Log Message: lang/erlang: Avoid RELRO check fail on the megaco driver. To generate a diff of this commit: cvs rdiff -u -r1.83 -r1.84 pkgsrc/lang/erlang/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1522614578201980 Content-Disposition: inline Content-Length: 853 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/erlang/Makefile diff -u pkgsrc/lang/erlang/Makefile:1.83 pkgsrc/lang/erlang/Makefile:1.84 --- pkgsrc/lang/erlang/Makefile:1.83 Wed Dec 13 14:45:20 2017 +++ pkgsrc/lang/erlang/Makefile Sun Apr 1 20:29:38 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.83 2017/12/13 14:45:20 fhajny Exp $ +# $NetBSD: Makefile,v 1.84 2018/04/01 20:29:38 fhajny Exp $ DISTNAME= otp_src_${DIST_VERSION_MAJOR}.${DIST_VERSION_MINOR} PKGNAME= ${DISTNAME:S/otp_src_/erlang-/} @@ -75,6 +75,9 @@ CONFIGURE_ARGS.DragonFly+= --disable-sct CONFIGURE_ARGS+= --enable-kernel-poll .endif +CHECK_RELRO_SKIP+= lib/erlang/lib/megaco-${VERSION.megaco}/priv/lib/megaco_flex_scanner_drv.so +CHECK_RELRO_SKIP+= lib/erlang/lib/megaco-${VERSION.megaco}/priv/lib/megaco_flex_scanner_drv_mt.so + .include "options.mk" .include "Makefile.versions" --_----------=_1522614578201980--