2009-12-12 16:15:48 +01:00
|
|
|
--- security/coreconf/FreeBSD.mk.orig 2009-11-09 01:34:19.000000000 +0100
|
|
|
|
+++ security/coreconf/FreeBSD.mk 2009-11-11 18:15:55.000000000 +0100
|
|
|
|
@@ -45,8 +45,24 @@
|
2007-03-19 12:42:52 +01:00
|
|
|
ifeq ($(OS_TEST),alpha)
|
|
|
|
CPU_ARCH = alpha
|
|
|
|
else
|
|
|
|
+ifeq ($(OS_TEST),amd64)
|
|
|
|
+CPU_ARCH = amd64
|
2009-12-12 16:15:48 +01:00
|
|
|
+else
|
|
|
|
+ifeq ($(OS_TEST),ia64)
|
|
|
|
+CPU_ARCH = ia64
|
|
|
|
+else
|
|
|
|
+ifeq ($(OS_TEST),powerpc)
|
|
|
|
+CPU_ARCH = powerpc
|
|
|
|
+else
|
|
|
|
+ifeq ($(OS_TEST),sparc64)
|
|
|
|
+CPU_ARCH = sparc64
|
2007-03-19 12:42:52 +01:00
|
|
|
+else
|
|
|
|
CPU_ARCH = x86
|
|
|
|
endif
|
2009-12-12 16:15:48 +01:00
|
|
|
+endif
|
|
|
|
+endif
|
|
|
|
+endif
|
2007-03-19 12:42:52 +01:00
|
|
|
+endif
|
|
|
|
|
- Update to Firefox 3.1 BETA3
Firefox 3.1 Beta 3 is based on the Gecko 1.9.1 rendering platform,
which has been under development for the past 9 months. Firefox 3.1
is an incremental release on the previous version with significant
changes to improve web compatibility, performance, and ease of use:
* Improved the new Private Browsing Mode.
* Improvements to web worker thread support.
* Improved performance and stability with the new TraceMonkey
JavaScript engine.
* New native JSON support.
* Improvements to the Gecko layout engine, including speculative parsing
for faster content rendering.
* Support for new web technologies such as the <video> and <audio> elements,
the W3C Geolocation API, JavaScript query selectors, CSS 2.1 and 3 properties,
SVG transforms and offline applications.
Thanks to: beat@, nox@, gahr@, Florian Smeets,
2009-04-26 00:45:27 +02:00
|
|
|
OS_CFLAGS = $(DSO_CFLAGS) -ansi -Wall -Wno-switch -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK
|
2007-03-19 12:42:52 +01:00
|
|
|
|
2009-12-12 16:15:48 +01:00
|
|
|
@@ -73,7 +89,7 @@
|
2007-03-19 12:42:52 +01:00
|
|
|
DLL_SUFFIX = so.1.0
|
|
|
|
endif
|
|
|
|
|
|
|
|
-MKSHLIB = $(CC) $(DSO_LDOPTS)
|
|
|
|
+MKSHLIB = $(CC) -Wl,-Bsymbolic -lc $(DSO_LDOPTS) -o $@
|
|
|
|
ifdef MAPFILE
|
|
|
|
MKSHLIB += -Wl,--version-script,$(MAPFILE)
|
|
|
|
endif
|
2009-12-12 16:15:48 +01:00
|
|
|
@@ -82,4 +98,4 @@
|
- Update to Firefox 3.1 BETA3
Firefox 3.1 Beta 3 is based on the Gecko 1.9.1 rendering platform,
which has been under development for the past 9 months. Firefox 3.1
is an incremental release on the previous version with significant
changes to improve web compatibility, performance, and ease of use:
* Improved the new Private Browsing Mode.
* Improvements to web worker thread support.
* Improved performance and stability with the new TraceMonkey
JavaScript engine.
* New native JSON support.
* Improvements to the Gecko layout engine, including speculative parsing
for faster content rendering.
* Support for new web technologies such as the <video> and <audio> elements,
the W3C Geolocation API, JavaScript query selectors, CSS 2.1 and 3 properties,
SVG transforms and offline applications.
Thanks to: beat@, nox@, gahr@, Florian Smeets,
2009-04-26 00:45:27 +02:00
|
|
|
|
|
|
|
G++INCLUDES = -I/usr/include/g++
|
|
|
|
|
|
|
|
-INCLUDES += -I/usr/X11R6/include
|
2009-12-12 16:15:48 +01:00
|
|
|
+#INCLUDES += -I/usr/local/include
|