pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/nss



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sat Aug 29 17:42:00 UTC 2020

Modified Files:
        pkgsrc/devel/nss: Makefile

Log Message:
nss: fix NetBSD/aarch64 build

NS_USE_GCC and CC_IS_CLANG are not SunOS specific makeflags, they are used
to toggle if gcm-aarch64.c gets built and probably for other stuff too ...


To generate a diff of this commit:
cvs rdiff -u -r1.189 -r1.190 pkgsrc/devel/nss/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/nss/Makefile
diff -u pkgsrc/devel/nss/Makefile:1.189 pkgsrc/devel/nss/Makefile:1.190
--- pkgsrc/devel/nss/Makefile:1.189     Sun Aug 23 08:31:27 2020
+++ pkgsrc/devel/nss/Makefile   Sat Aug 29 17:41:59 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.189 2020/08/23 08:31:27 ryoon Exp $
+# $NetBSD: Makefile,v 1.190 2020/08/29 17:41:59 tnn Exp $
 
 DISTNAME=              nss-${NSS_RELEASE:S/.0$//}
 NSS_RELEASE=           3.56.0
@@ -54,11 +54,11 @@ SO_SUFFIX=          so.1.0
 PLIST_SUBST+=          SO_SUFFIX=${SO_SUFFIX:Q}
 
 .if !empty(PKGSRC_COMPILER:Mclang) || !empty(PKGSRC_COMPILER:Mgcc)
-MAKE_ENV.SunOS+=       NS_USE_GCC=YES
+MAKE_ENV+=             NS_USE_GCC=YES
 .endif
 
 .if !empty(PKGSRC_COMPILER:Mclang)
-MAKE_ENV.SunOS+=       CC_IS_CLANG=YES
+MAKE_ENV+=             CC_IS_CLANG=YES
 .endif
 
 SUBST_CLASSES+=                64bit



Home | Main Index | Thread Index | Old Index