diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
commit | ed564c5560425a51c9637a8e57b60f76fc32f06c (patch) | |
tree | 8826ec8ebd237729679ab296e732886c610e183d /www/firefox-esr/files/patch-nspr-unix.c | |
parent | New port: fuhquake (diff) |
Add mozilla-firebird after a repo move from phoenix.
Mozilla Firebird is the browser reborn from the ashes of the Phoenix.
* Update to 0.6 [1]
* Add optional GTK+-2 support [2]
* Add [untested] Sparc64 support [3]
* Add [untested] Alpha support [4]
* Do not compile with -O2 by default. Instead specify -DWITH_OPTIMIZED_CFLAGS
to get extra optimizations
* Link the Java Plug-in again
Submitted by: Stijn Hoop <stijn@win.tue.nl> [1]
Christopher Nehren <apeiron@comcast.net> [2] (based on)
tmm and kris [3]
Bernd Walter <ticso@cicely.de> [4]
Minor fixes by: obraun
Notes
Notes:
svn path=/head/; revision=82037
Diffstat (limited to 'www/firefox-esr/files/patch-nspr-unix.c')
-rw-r--r-- | www/firefox-esr/files/patch-nspr-unix.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/www/firefox-esr/files/patch-nspr-unix.c b/www/firefox-esr/files/patch-nspr-unix.c new file mode 100644 index 000000000000..6bb4ed08fb40 --- /dev/null +++ b/www/firefox-esr/files/patch-nspr-unix.c @@ -0,0 +1,21 @@ +--- nsprpub/pr/src/md/unix/unix.c.orig Sat May 31 18:06:04 2003 ++++ nsprpub/pr/src/md/unix/unix.c Sat May 31 18:04:43 2003 +@@ -65,7 +65,8 @@ + * PRInt32* pointer to a _PRSockLen_t* pointer. + */ + #if defined(HAVE_SOCKLEN_T) \ +- || (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2) ++ || (defined(LINUX) && defined(__GLIBC__) && __GLIBC__ >= 2) \ ++ || defined(FREEBSD) + #define _PRSockLen_t socklen_t + #elif defined(IRIX) || defined(HPUX) || defined(OSF1) || defined(SOLARIS) \ + || defined(AIX4_1) || defined(LINUX) || defined(SONY) \ +@@ -73,7 +74,7 @@ + || defined(SUNOS4) || defined(NCR) || defined(DARWIN) \ + || defined(NEXTSTEP) || defined(QNX) + #define _PRSockLen_t int +-#elif (defined(AIX) && !defined(AIX4_1)) || defined(FREEBSD) \ ++#elif (defined(AIX) && !defined(AIX4_1)) \ + || defined(NETBSD) || defined(OPENBSD) || defined(UNIXWARE) \ + || defined(DGUX) || defined(VMS) || defined(NTO) + #define _PRSockLen_t size_t |