summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspz <spz@pkgsrc.org>2013-11-05 07:05:41 +0000
committerspz <spz@pkgsrc.org>2013-11-05 07:05:41 +0000
commit7c02e5ff6bd61c37405df880c3cbe35276219ef2 (patch)
treeb62a20b8d4ea3624806b69d67bc5d9f2861aada6
parent8a6499e61879f10cf3cf2d00ce3fa537083b8924 (diff)
downloadpkgsrc-7c02e5ff6bd61c37405df880c3cbe35276219ef2.tar.gz
Pullup ticket #4250 - requested by joerg
security/openssl: build fix for Linux/POWERPC64 Revisions pulled up: - security/openssl/Makefile by patch ------------------------------------------------------------------- Module Name: pkgsrc Committed By: joerg Date: Tue Oct 29 21:33:21 UTC 2013 Modified Files: pkgsrc/security/openssl: Makefile Log Message: For Linux/POWERPC64 override the default target, otherwise bad things happen (TM). To generate a diff of this commit: cvs rdiff -u -r1.181 -r1.182 pkgsrc/security/openssl/Makefile
-rw-r--r--security/openssl/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile
index fb11581bfde..baf5c51c138 100644
--- a/security/openssl/Makefile
+++ b/security/openssl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.179 2013/07/26 11:27:02 ryoon Exp $
+# $NetBSD: Makefile,v 1.179.2.1 2013/11/05 07:05:41 spz Exp $
DISTNAME= openssl-1.0.1e
MASTER_SITES= http://ftp.openssl.org/source/
@@ -113,6 +113,11 @@ CONFIGURE_ARGS+= hpux-ia64-${CC}
. endif
. endif
+.elif ${OPSYS} == "Linux"
+. if ${MACHINE_ARCH} == "powerpc64"
+CONFIGURE_SCRIPT= ./Configure
+CONFIGURE_ARGS+= linux-ppc64
+. endif
.endif
.include "../../security/openssl/options.mk"