Thu Sep 26 09:43:50 2019 UTC ()
compat15-extras: no point checking RELRO on these binaries


(wiz)
diff -r1.4 -r1.5 pkgsrc/emulators/compat15-extras/Makefile

cvs diff -r1.4 -r1.5 pkgsrc/emulators/compat15-extras/Makefile (expand / switch to unified diff)

--- pkgsrc/emulators/compat15-extras/Makefile 2008/06/07 21:20:46 1.4
+++ pkgsrc/emulators/compat15-extras/Makefile 2019/09/26 09:43:50 1.5
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.4 2008/06/07 21:20:46 joerg Exp $ 1# $NetBSD: Makefile,v 1.5 2019/09/26 09:43:50 wiz Exp $
2 2
3COMPAT_PKG= compat15 # for compat_netbsd/Makefile.common 3COMPAT_PKG= compat15 # for compat_netbsd/Makefile.common
4NETBSD_VERSION= 1.5 4NETBSD_VERSION= 1.5
5PKGREVISION= 1 5PKGREVISION= 1
6 6
7HOMEPAGE= http://www.NetBSD.org/releases/formal-1.5/index.html 7HOMEPAGE= http://www.NetBSD.org/releases/formal-1.5/index.html
8COMMENT= Additional shared libraries for NetBSD 1.5 compatibility 8COMMENT= Additional shared libraries for NetBSD 1.5 compatibility
9 9
10EMUL_PLATFORMS= netbsd-i386 netbsd-sparc 10EMUL_PLATFORMS= netbsd-i386 netbsd-sparc
11 11
12.include "../../emulators/compat_netbsd/Makefile.common" 12.include "../../emulators/compat_netbsd/Makefile.common"
13 13
14DISTNAME= compat15-extras-${EMUL_ARCH}-1.5.3 14DISTNAME= compat15-extras-${EMUL_ARCH}-1.5.3
@@ -17,14 +17,16 @@ DISTNAME= compat15-extras-${EMUL_ARCH}- @@ -17,14 +17,16 @@ DISTNAME= compat15-extras-${EMUL_ARCH}-
17# on machines running NetBSD-1.5. 17# on machines running NetBSD-1.5.
18# 18#
19.if defined(NETBSD_COMPAT32) 19.if defined(NETBSD_COMPAT32)
20ACCEPTABLE_NETBSD= NetBSD-1.4[A-Z]* NetBSD-1.5 NetBSD-1.5.* 20ACCEPTABLE_NETBSD= NetBSD-1.4[A-Z]* NetBSD-1.5 NetBSD-1.5.*
21.else 21.else
22NOT_FOR_PLATFORM= NetBSD-*-${MACHINE_ARCH} 22NOT_FOR_PLATFORM= NetBSD-*-${MACHINE_ARCH}
23.endif 23.endif
24 24
25.if ${EMUL_ARCH} == "i386" 25.if ${EMUL_ARCH} == "i386"
26post-extract: 26post-extract:
27 cd ${WRKSRC}/usr/lib && mv libtermlib.so.0.0 libtermlib.so.0.4 27 cd ${WRKSRC}/usr/lib && mv libtermlib.so.0.0 libtermlib.so.0.4
28.endif 28.endif
29 29
 30CHECK_RELRO_SKIP+= *
 31
30.include "../../mk/bsd.pkg.mk" 32.include "../../mk/bsd.pkg.mk"