diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-11-04 20:06:34 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-11-04 20:06:34 +0000 |
commit | f86608a9a744dbbf0baae55f439be643ecab1c4a (patch) | |
tree | 1d487753bd01b7278c2174f6da10ff2f97619e20 /mail | |
parent | 8b9c78e70d3d1c2ccc0e8bcc5b5c14e59401adc0 (diff) | |
download | pkgsrc-f86608a9a744dbbf0baae55f439be643ecab1c4a.tar.gz |
Use __va_copy instead of va_copy for NetBSD. This is needed on gcc 3.4
since the build use -ansi that in turn makes gcc 3.4 modify its pre-
defined symbols in such a way that va_copy is not defined.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird/distinfo | 4 | ||||
-rw-r--r-- | mail/thunderbird/patches/patch-bt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index 4836b206ca2..8741f16eab1 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2004/09/20 12:55:43 taya Exp $ +$NetBSD: distinfo,v 1.8 2004/11/04 20:06:34 kristerw Exp $ SHA1 (thunderbird-source-0.8.tar.bz2) = 8ee7f535d2c512529b735e86936c8d2ca347570e Size (thunderbird-source-0.8.tar.bz2) = 32880592 bytes @@ -26,7 +26,7 @@ SHA1 (patch-bo) = 357c4cacdc179191d6fe263b4eb62cc56b7ec25f SHA1 (patch-bq) = 3b8a951828b0e6906e4352027b4d36c9b1f8aaae SHA1 (patch-br) = aa48e974306fdbfc1e71b5fd9c1f5d18771143f5 SHA1 (patch-bs) = 81065130c96bf966b22e6abb767a5b674dcb52cb -SHA1 (patch-bt) = 8ee09dd2acbbc0c002283b15eafbafb4f324948a +SHA1 (patch-bt) = 6e3ceb31866dfb0dba81c93446db2b21e1df9baa SHA1 (patch-bu) = db33b8651e3cb1fbf9a18dbe78e1e8288cfda0ee SHA1 (patch-bv) = 4f23dfd885131ea866f31370f1421e7c19706860 SHA1 (patch-bw) = fc3a518d3762be6e85104a6dc7fffd5ae1a463c8 diff --git a/mail/thunderbird/patches/patch-bt b/mail/thunderbird/patches/patch-bt index 8f9f3342b5f..9549c8d59ca 100644 --- a/mail/thunderbird/patches/patch-bt +++ b/mail/thunderbird/patches/patch-bt @@ -1,4 +1,4 @@ -$NetBSD: patch-bt,v 1.1 2004/06/24 23:09:56 taya Exp $ +$NetBSD: patch-bt,v 1.2 2004/11/04 20:06:34 kristerw Exp $ diff -ru ../Orig/mozilla/nsprpub/pr/src/io/prprf.c ./nsprpub/pr/src/io/prprf.c --- ../Orig/mozilla/nsprpub/pr/src/io/prprf.c 2004-03-09 12:18:19.000000000 +0900 @@ -11,7 +11,7 @@ diff -ru ../Orig/mozilla/nsprpub/pr/src/io/prprf.c ./nsprpub/pr/src/io/prprf.c + (defined(__amd64__) || \ + (defined(__powerpc__) && __NetBSD_Version__ >= 105000000))) +#include <stdarg.h> -+#define VARARGS_ASSIGN(foo, bar) va_copy((foo), (bar)) ++#define VARARGS_ASSIGN(foo, bar) __va_copy((foo), (bar)) #elif (defined(LINUX) && defined(__powerpc__)) || \ (defined(LINUX) && defined(__s390__)) || \ (defined(LINUX) && defined(__s390x__)) || \ |