summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorcbiere <cbiere>2006-12-03 14:49:56 +0000
committercbiere <cbiere>2006-12-03 14:49:56 +0000
commit2e8e9b2427164a763cb35e8fb003309a1b6bdbfa (patch)
tree3a656d70e17e7d2a53e0b0bb086b8bdbfb771f8e /security
parent09dcb72abbf56a8fe0d8be7636c48af06dc1790f (diff)
downloadpkgsrc-2e8e9b2427164a763cb35e8fb003309a1b6bdbfa.tar.gz
Check for GCC on IRIX instead of assuming the native compiler is used.
Diffstat (limited to 'security')
-rw-r--r--security/openssl/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile
index 1adcc964e59..17e4f4f2ce6 100644
--- a/security/openssl/Makefile
+++ b/security/openssl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.117 2006/09/30 04:20:24 taca Exp $
+# $NetBSD: Makefile,v 1.118 2006/12/03 14:49:56 cbiere Exp $
OPENSSL_SNAPSHOT?= # empty
OPENSSL_STABLE?= # empty
@@ -71,7 +71,11 @@ CONFIGURE_ARGS+= solaris-${OPENSSL_MACHINE_ARCH}-cc
CONFIGURE_ARGS+= no-asm
. if ${ABI} == "64"
CONFIGURE_SCRIPT= ./Configure
+. if !empty(CC_VERSION:Mgcc*)
+CONFIGURE_ARGS+= irix64-mips4-gcc
+. else
CONFIGURE_ARGS+= irix64-mips4-cc
+. endif
. endif
.endif