diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2001-01-22 01:23:18 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2001-01-22 01:23:18 +0000 |
commit | 58e0c80c379f145033ea6067aea2c1c08182d9c7 (patch) | |
tree | 4eddda29005828aaacc644dd96d09df3245d9088 /www/seamonkey2/files/patch-ap | |
parent | Add fix for 4.2-stable. (diff) |
Add PSM support.
Submitted by: nsayer
Remove use of libgcc_r, since it was so uncerimoniously removed. If this
doesn't work on -stable, then -stable is broken, and someone needs to fix
it...
Submitted by: Roman Shterenzon <roman@xpert.com>
Use sched_getpriority_max(), instead of hard coded value.
Submitted by: Peter Haight <peterh@sapros.com>, dufault
Revise pkg-comment and pkg-descr.
PR: 24296
Submitted by: roam
Enable SVG support, and disable C++ exceptions (since they will only slow
things down).
Diffstat (limited to '')
-rw-r--r-- | www/seamonkey2/files/patch-ap | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/www/seamonkey2/files/patch-ap b/www/seamonkey2/files/patch-ap new file mode 100644 index 000000000000..beef296a4102 --- /dev/null +++ b/www/seamonkey2/files/patch-ap @@ -0,0 +1,58 @@ +--- security/coreconf/config.mk.orig Thu Jan 18 21:58:30 2001 ++++ security/coreconf/config.mk Thu Jan 18 21:58:41 2001 +@@ -56,7 +56,7 @@ + # each OS release. # + ####################################################################### + +-ifeq (,$(filter-out NetBSD,$(OS_TARGET))) ++ifeq (,$(filter-out FreeBSD,$(OS_TARGET))) + include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk + else + include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk +--- security/psm/Makefile.in.orig Thu Jan 18 22:00:05 2001 ++++ security/psm/Makefile.in Thu Jan 18 22:00:19 2001 +@@ -28,7 +28,7 @@ + CORE_DEPTH=$(topsrcdir)/security + + include $(CORE_DEPTH)/coreconf/arch.mk +-ifeq (,$(filter-out NetBSD,$(OS_TARGET))) ++ifeq (,$(filter-out FreeBSD,$(OS_TARGET))) + include $(CORE_DEPTH)/coreconf/$(OS_TARGET).mk + else + include $(CORE_DEPTH)/coreconf/$(OS_CONFIG).mk +--- security/psm/server/Makefile.orig Tue Dec 19 17:24:58 2000 ++++ security/psm/server/Makefile Fri Jan 19 03:49:36 2001 +@@ -37,7 +37,7 @@ + endif + + ifneq ($(OS_ARCH), WINNT) +-ifeq ($(OS_ARCH), Linux) ++ifeq ($(OS_ARCH), FreeBSD) + # On linux, we link with libstdc++ (we're always using egcs on linux, right?) + CPLUSPLUSRUNTIME = -L /usr/lib -lstdc++ -lm + else +@@ -57,11 +57,11 @@ + endif + endif + +-ifeq ($(OS_ARCH), Linux) ++ifeq ($(OS_ARCH), FreeBSD) + ifdef USE_PTHREADS + # Replace OS_LIBS, because the order of libpthread, libdl, and libc are + # very important. Otherwise you get horrible crashes. +-OS_LIBS = -lpthread -ldl -lc ++OS_LIBS = -pthread + endif + endif + +@@ -158,8 +158,8 @@ + XPCOM_LINK_LIBS = -lxpcom + XPCOM_LIBS += $(DIST)/lib/libz.$(DLL_SUFFIX) + else +-NSPR_LINK_LIBS = $(NSPR_LIBS) +-XPCOM_LINK_LIBS = $(XPCOM_LIBS) ++NSPR_LINK_LIBS = -L$(DIST)/lib -lnspr4 -lplc4 -lplds4 ++XPCOM_LINK_LIBS = -lxpcom + endif + + ifndef MOZ_DIST |