Received: by mail.netbsd.org (Postfix, from userid 605) id 1B478855DF; Sat, 5 Aug 2017 22:05:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DEB4685621 for ; Sat, 5 Aug 2017 22:04:28 +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 nGapriDVcgVf for ; Sat, 5 Aug 2017 22:04:28 +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 550A485711 for ; Sat, 5 Aug 2017 11:06:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 50587FACD; Sat, 5 Aug 2017 11:06:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150193118912690" MIME-Version: 1.0 Date: Sat, 5 Aug 2017 11:06:29 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/security/openssl To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20170805110629.50587FACD@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. --_----------=_150193118912690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sat Aug 5 11:06:29 UTC 2017 Modified Files: pkgsrc/security/openssl: Makefile Log Message: Overhaul the platform selector logic, so that the right value is selected for powerpc64 on Darwin. Fix for PR pkg/52114. To generate a diff of this commit: cvs rdiff -u -r1.230 -r1.231 pkgsrc/security/openssl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150193118912690 Content-Disposition: inline Content-Length: 1039 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/openssl/Makefile diff -u pkgsrc/security/openssl/Makefile:1.230 pkgsrc/security/openssl/Makefile:1.231 --- pkgsrc/security/openssl/Makefile:1.230 Thu Jan 26 16:31:57 2017 +++ pkgsrc/security/openssl/Makefile Sat Aug 5 11:06:29 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.230 2017/01/26 16:31:57 jperkin Exp $ +# $NetBSD: Makefile,v 1.231 2017/08/05 11:06:29 bsiegert Exp $ DISTNAME= openssl-1.0.2k CATEGORIES= security @@ -78,12 +78,16 @@ CONFIGURE_ARGS+= tru64-alpha-cc .elif ${OPSYS} == "Darwin" CONFIGURE_SCRIPT= ./Configure . if defined(ABI) && ${ABI} == "64" -CONFIGURE_ARGS+= darwin64-${MACHINE_ARCH}-cc -. elif ${MACHINE_ARCH} == "powerpc" -CONFIGURE_ARGS+= darwin-ppc-cc +_OS= darwin64 . else -CONFIGURE_ARGS+= darwin-${MACHINE_ARCH}-cc +_OS= darwin . endif +. if ${MACHINE_ARCH:Mpowerpc*} +_ARCH= ppc +. else +_ARCH= ${MACHINE_ARCH} +.endif +CONFIGURE_ARGS+= ${_OS}-${_ARCH}-cc SUBST_CLASSES+= dl SUBST_MESSAGE.dl= Adding dynamic link compatibility library. --_----------=_150193118912690--