Sun Jul 18 23:11:08 2021 UTC ()
PR 55733 Joern Clausen: use GNU m4 with security/openssl on Solaris.

Seems that Solaris's m4 overflows internal limits.


(dholland)
diff -r1.273 -r1.274 pkgsrc/security/openssl/Makefile

cvs diff -r1.273 -r1.274 pkgsrc/security/openssl/Makefile (expand / switch to unified diff)

--- pkgsrc/security/openssl/Makefile 2021/07/10 15:40:52 1.273
+++ pkgsrc/security/openssl/Makefile 2021/07/18 23:11:08 1.274
@@ -1,31 +1,32 @@ @@ -1,31 +1,32 @@
1# $NetBSD: Makefile,v 1.273 2021/07/10 15:40:52 jperkin Exp $ 1# $NetBSD: Makefile,v 1.274 2021/07/18 23:11:08 dholland Exp $
2 2
3# Remember to upload-distfiles when updating OpenSSL -- otherwise it  3# Remember to upload-distfiles when updating OpenSSL -- otherwise it
4# is not possible for users who have bootstrapped without OpenSSL 4# is not possible for users who have bootstrapped without OpenSSL
5# to install it and enable HTTPS fetching. 5# to install it and enable HTTPS fetching.
6DISTNAME= openssl-1.1.1k 6DISTNAME= openssl-1.1.1k
7PKGREVISION= 1 7PKGREVISION= 1
8CATEGORIES= security 8CATEGORIES= security
9MASTER_SITES= https://www.openssl.org/source/ 9MASTER_SITES= https://www.openssl.org/source/
10 10
11MAINTAINER= pkgsrc-users@NetBSD.org 11MAINTAINER= pkgsrc-users@NetBSD.org
12HOMEPAGE= https://www.openssl.org/ 12HOMEPAGE= https://www.openssl.org/
13COMMENT= Secure Socket Layer and cryptographic library 13COMMENT= Secure Socket Layer and cryptographic library
14LICENSE= openssl 14LICENSE= openssl
15 15
16USE_GCC_RUNTIME= yes 16USE_GCC_RUNTIME= yes
17 17
18USE_TOOLS+= fgrep gmake makedepend perl 18USE_TOOLS+= fgrep gmake makedepend perl
 19USE_TOOLS.SunOS+= gm4
19BUILD_TARGET= depend all 20BUILD_TARGET= depend all
20TEST_TARGET= tests 21TEST_TARGET= tests
21 22
22HAS_CONFIGURE= yes 23HAS_CONFIGURE= yes
23CONFIGURE_SCRIPT= ./config 24CONFIGURE_SCRIPT= ./config
24CONFIGURE_ARGS+= --prefix=${PREFIX} 25CONFIGURE_ARGS+= --prefix=${PREFIX}
25CONFIGURE_ARGS+= --libdir=${PREFIX}/lib 26CONFIGURE_ARGS+= --libdir=${PREFIX}/lib
26CONFIGURE_ARGS+= --openssldir=${PKG_SYSCONFDIR} 27CONFIGURE_ARGS+= --openssldir=${PKG_SYSCONFDIR}
27CONFIGURE_ARGS+= shared 28CONFIGURE_ARGS+= shared
28 29
29.include "../../mk/bsd.prefs.mk" 30.include "../../mk/bsd.prefs.mk"
30 31
31.if !empty(MACHINE_PLATFORM:MDarwin-[0-8].*-powerpc) 32.if !empty(MACHINE_PLATFORM:MDarwin-[0-8].*-powerpc)