diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-16 00:10:12 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-16 00:10:12 +0000 |
commit | 2b519d7ce5cc1a9b78fe25efa769223dfea9bcb7 (patch) | |
tree | d3475b2b30df2c64058a7bb4e013bcd3cc6579a3 /www/flock/files/patch-nsprpub-pr-src-io-prprf.c | |
parent | Include a default configuration file for voice. (diff) |
Update to 0.9. For a complete list of what's new, plus an important
list of Known Issues, see:
http://www.mozilla.org/products/firefox/releases/0.9.html
This update also includes a new pkg-install script based on ports/65590
from Thierry Thomas <thierry@pompo.net>. However...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
After installing Firefox, you must su - to root, and run ``firefox'' before
running it as any other user. If you do not su - to root, you may lose some
of your user settings. If you try to run Firefox as a normal user without
first running it as root, the browser will not show up. This is a known issue
with Firefox, and they hope to address it in a future release.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Diffstat (limited to 'www/flock/files/patch-nsprpub-pr-src-io-prprf.c')
-rw-r--r-- | www/flock/files/patch-nsprpub-pr-src-io-prprf.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/flock/files/patch-nsprpub-pr-src-io-prprf.c b/www/flock/files/patch-nsprpub-pr-src-io-prprf.c index 29b941b60fac..38bd959aef25 100644 --- a/www/flock/files/patch-nsprpub-pr-src-io-prprf.c +++ b/www/flock/files/patch-nsprpub-pr-src-io-prprf.c @@ -1,14 +1,14 @@ -$FreeBSD$ - ---- nsprpub/pr/src/io/prprf.c Wed Feb 26 15:53:42 2003 -+++ nsprpub/pr/src/io/prprf.c Thu Oct 16 22:50:40 2003 -@@ -52,5 +52,8 @@ +--- nsprpub/pr/src/io/prprf.c.orig Mon Mar 8 22:18:19 2004 ++++ nsprpub/pr/src/io/prprf.c Tue Jun 15 13:17:30 2004 +@@ -51,7 +51,10 @@ + ** Note: on some platforms va_list is defined as an array, ** and requires array notation. */ --#if (defined(LINUX) && defined(__powerpc__)) || \ +-#if (defined(LINUX) && defined(__x86_64__)) +#if defined(__amd64__) +#include <stdarg.h> +#define VARARGS_ASSIGN(foo, bar) va_copy((foo), (bar)) -+#elif (defined(LINUX) && defined(__powerpc__)) || \ ++#elif (defined(LINUX) && defined(__x86_64__)) + #define VARARGS_ASSIGN(foo, bar) __va_copy((foo), (bar)) + #elif (defined(LINUX) && defined(__powerpc__)) || \ (defined(LINUX) && defined(__s390__)) || \ - (defined(LINUX) && defined(__s390x__)) || \ |