pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/49131 (security/openssl utilise aix-$CC configuration profiles, rather than just assume cc)
On 21/08/2014 09:03, wiz%NetBSD.org@localhost wrote:
> Please confirm that this still works as intended!
With amended diff, confirmed every works as intended between GCC & XLC
with ABI=64 & ABI not being defined. The correct configuration is
selected, ABI=64 & gcc is broken but that's a separate issue.
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/security/openssl/Makefile,v
retrieving revision 1.196
diff -u -r1.196 Makefile
--- Makefile 21 Aug 2014 08:02:56 -0000 1.196
+++ Makefile 21 Aug 2014 15:42:43 -0000
@@ -94,13 +94,13 @@
.if defined(ABI) && ${ABI} == "64"
.if !empty(CC_VERSION:Mgcc*)
CONFIGURE_ARGS+= aix64-gcc
-.elif
+.else
CONFIGURE_ARGS+= aix64-cc
.endif
.else
.if !empty(CC_VERSION:Mgcc*)
CONFIGURE_ARGS+= aix-gcc
-.elif
+.else
CONFIGURE_ARGS+= aix-cc
.endif
.endif
Home |
Main Index |
Thread Index |
Old Index