summaryrefslogtreecommitdiff
path: root/security/openssl
diff options
context:
space:
mode:
authorcbiere <cbiere@pkgsrc.org>2006-12-03 14:49:56 +0000
committercbiere <cbiere@pkgsrc.org>2006-12-03 14:49:56 +0000
commit602a5d0ebaba0c330869d20508fe34d9885ad2c5 (patch)
tree3a656d70e17e7d2a53e0b0bb086b8bdbfb771f8e /security/openssl
parentf8eed6868154aacd79f2615cebb964a71fdff7e4 (diff)
downloadpkgsrc-602a5d0ebaba0c330869d20508fe34d9885ad2c5.tar.gz
Check for GCC on IRIX instead of assuming the native compiler is used.
Diffstat (limited to 'security/openssl')
-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