summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2002-05-25 16:00:55 +0000
committerwtc%netscape.com <devnull@localhost>2002-05-25 16:00:55 +0000
commite3ac3581371a756d7223c87496b1c707445075f0 (patch)
treee9324a4cd9ee8320f0eee5fa7c3fbd7e7c1cf3da
parentecc56687e88df239322f7c3b9cf9581bf82f80c2 (diff)
downloadnss-hg-e3ac3581371a756d7223c87496b1c707445075f0.tar.gz
Bug 142575: use the PRIVATE keyword for the /EXPORT linker option.
-rw-r--r--security/nss/lib/nss/config.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/nss/lib/nss/config.mk b/security/nss/lib/nss/config.mk
index 607f3a215..693b6d31a 100644
--- a/security/nss/lib/nss/config.mk
+++ b/security/nss/lib/nss/config.mk
@@ -99,8 +99,8 @@ MKSHLIB += -R '$$ORIGIN'
endif
ifeq (,$(filter-out WINNT WIN95,$(OS_TARGET)))
-# Export 'mktemp' to be backward compatible with NSS 3.2.x and 3.3.x.
-# See bug 142575.
+# Export 'mktemp' to be backward compatible with NSS 3.2.x and 3.3.x
+# but do not put it in the import library. See bug 142575.
DEFINES += -DWIN32_NSS3_DLL_COMPAT
-DLLFLAGS += -EXPORT:mktemp=nss_mktemp
+DLLFLAGS += -EXPORT:mktemp=nss_mktemp,PRIVATE
endif