diff options
author | flo <flo@FreeBSD.org> | 2012-07-27 05:49:58 +0800 |
---|---|---|
committer | flo <flo@FreeBSD.org> | 2012-07-27 05:49:58 +0800 |
commit | 85b904b679203420da0f901ae5b1f3bb29dfb7cd (patch) | |
tree | 89c0045d73cc71a8a86842d8aa10f24e71cb5f26 /security/nss | |
parent | 864283a90c51467eba734e03bd14aeec892b4542 (diff) | |
download | freebsd-ports-gnome-85b904b679203420da0f901ae5b1f3bb29dfb7cd.tar.gz freebsd-ports-gnome-85b904b679203420da0f901ae5b1f3bb29dfb7cd.tar.zst freebsd-ports-gnome-85b904b679203420da0f901ae5b1f3bb29dfb7cd.zip |
- update firefox/thunderbird ESR versions to 10.0.6
- update firefox 14.0.1
- update thunderbird to 14.0
- update seamonkey to 2.11
- switch to new options framework
- add experimental rendering via cairo-qt (QT4 option)
- add audio backend options (ALSA and PulseAudio)
- rename SMB option to GNOMEVFS2
- turn on LOGGING by default (like upstream linux builds)
- improve about:memory output
- unbreak PGO
- use system libs [1]
- switch to libevent2 [2]
- fix conflict with devel/libunwind and base gcc [3]
- unbreak clang/libc++ build [4]
- unbreak build with base gcc on >= 9.x [5]
- use common IPC code with other BSDs[6]
- and *miscellaneous improvements*
PR: ports/146231 [1], ports/161421 [2]
ports/150631, ports/168369, ports/168637, ports/168793, ports/168978 [3]
ports/163454, ports/164905, ports/169231 [4]
ports/169389, ports/169479 [5]
Obtained from: pkgsrc via bugzilla #753046 [6]
In collaboration with: Jan Beich (who did the major part of this work and
deserves a special thank you!)
Diffstat (limited to 'security/nss')
-rw-r--r-- | security/nss/files/patch-..::coreconf::FreeBSD.mk | 3 | ||||
-rw-r--r-- | security/nss/files/patch-lib-freebl-Makefile | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/security/nss/files/patch-..::coreconf::FreeBSD.mk b/security/nss/files/patch-..::coreconf::FreeBSD.mk index 46e0c7147317..089dac36d915 100644 --- a/security/nss/files/patch-..::coreconf::FreeBSD.mk +++ b/security/nss/files/patch-..::coreconf::FreeBSD.mk @@ -17,8 +17,7 @@ CPU_ARCH = x86 endif ifeq ($(CPU_ARCH),amd64) --CPU_ARCH = x86_64 -+CPU_ARCH = amd64 + CPU_ARCH = x86_64 +USE_64 = 1 +endif +ifeq ($(OS_TEST),alpha) diff --git a/security/nss/files/patch-lib-freebl-Makefile b/security/nss/files/patch-lib-freebl-Makefile new file mode 100644 index 000000000000..ff51b6c41df7 --- /dev/null +++ b/security/nss/files/patch-lib-freebl-Makefile @@ -0,0 +1,11 @@ +--- lib/freebl/Makefile~ ++++ lib/freebl/Makefile +@@ -201,7 +201,7 @@ ifeq ($(USE_N32),1) + endif + endif + +-ifeq ($(OS_TARGET),Linux) ++ifeq (,$(filter-out Linux FreeBSD, $(OS_TARGET))) + ifeq ($(CPU_ARCH),x86_64) + ASFILES = arcfour-amd64-gas.s mpi_amd64_gas.s + ASFLAGS += -march=opteron -m64 -fPIC -Wa,--noexecstack |