Received: by mail.netbsd.org (Postfix, from userid 605) id 1D45C84EF6; Tue, 21 Jun 2022 09:45:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 57F3C84D2A for ; Tue, 21 Jun 2022 09:45:54 +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 n_DsXTVUcXiX for ; Tue, 21 Jun 2022 09:45:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D992884EF5 for ; Tue, 21 Jun 2022 09:45:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E1937FB1A; Tue, 21 Jun 2022 09:47:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655804869266860" MIME-Version: 1.0 Date: Tue, 21 Jun 2022 09:47:49 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/net/samba4 To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20220621094749.E1937FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655804869266860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Tue Jun 21 09:47:49 UTC 2022 Modified Files: pkgsrc/net/samba4: hacks.mk Log Message: net/samba4: needs --without-pie on NetBSD/powerpc. This is in contrast to ../net/samba which needs --disable-pie. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/samba4/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655804869266860 Content-Disposition: inline Content-Length: 638 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/samba4/hacks.mk diff -u pkgsrc/net/samba4/hacks.mk:1.1 pkgsrc/net/samba4/hacks.mk:1.2 --- pkgsrc/net/samba4/hacks.mk:1.1 Tue May 12 12:19:52 2015 +++ pkgsrc/net/samba4/hacks.mk Tue Jun 21 09:47:49 2022 @@ -1,3 +1,8 @@ -# $NetBSD: hacks.mk,v 1.1 2015/05/12 12:19:52 ryoon Exp $ +# $NetBSD: hacks.mk,v 1.2 2022/06/21 09:47:49 he Exp $ -.include "../../net/samba/hacks.mk" +# Enabling PIE results in a 'Unsupported relocation type 6 in non-PLT +# relocations' error under NetBSD/macppc. +.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "powerpc" +PKG_HACKS+= pie +CONFIGURE_ARGS+= --without-pie +.endif --_----------=_1655804869266860--