6593022e89
release of the Firebird web browser with a new name to avoid conflicts with the Firebird database. This is version 0.8. http://www.mozilla.org/products/firefox/releases/ * Update to 0.8 and change name to firefox [1] * Make PLIST from a fake installation [1] * Restore original credit and portname in Makefile [1] * Optionally install headers and IDL files [2] * Use PERL instead of REINPLACE_CMD in a few places [1] * Use OPTIONS * Enable the Inspector extension * Fix another possible esound related problem * Enable basic optimizations if WITH_DEBUG is not specified PR: 62631 [2] Submitted by: trevor [1] [2]
24 lines
969 B
C
24 lines
969 B
C
$FreeBSD$
|
|
|
|
--- 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
|