pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security/openssl guard against undefined ABI
details: https://anonhg.NetBSD.org/pkgsrc/rev/d831a5ba4252
branches: trunk
changeset: 650161:d831a5ba4252
user: tnn <tnn%pkgsrc.org@localhost>
date: Sun Apr 19 09:02:02 2015 +0000
description:
guard against undefined ABI
diffstat:
security/openssl/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r dd8a8acb0c3e -r d831a5ba4252 security/openssl/Makefile
--- a/security/openssl/Makefile Sun Apr 19 06:42:02 2015 +0000
+++ b/security/openssl/Makefile Sun Apr 19 09:02:02 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.204 2015/03/19 22:11:22 tron Exp $
+# $NetBSD: Makefile,v 1.205 2015/04/19 09:02:02 tnn Exp $
DISTNAME= openssl-1.0.2a
CATEGORIES= security
@@ -51,7 +51,7 @@
. endif
.elif ${OPSYS} == "IRIX"
CONFIGURE_ARGS+= no-asm
-. if ${ABI} == "64"
+. if defined(ABI) && ${ABI} == "64"
CONFIGURE_SCRIPT= ./Configure
. if !empty(CC_VERSION:Mgcc*)
CONFIGURE_ARGS+= irix64-mips4-gcc
@@ -106,7 +106,7 @@
SUBST_SED.soname= -e 's/-Wl,-soname=/-Wl,-h,/g'
.elif ${OPSYS} == "HPUX"
CONFIGURE_SCRIPT= ./Configure
-. if ${ABI} == "64"
+. if defined(ABI) && ${ABI} == "64"
. if ${MACHINE_ARCH} == "hppa"
CONFIGURE_ARGS+= hpux64-parisc2-${CC}
. else
Home |
Main Index |
Thread Index |
Old Index