pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/thunderbird Use __va_copy instead of va_copy for ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ba13b1c1237a
branches:  trunk
changeset: 482894:ba13b1c1237a
user:      kristerw <kristerw%pkgsrc.org@localhost>
date:      Thu Nov 04 20:06:34 2004 +0000

description:
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:

 mail/thunderbird/distinfo         |  4 ++--
 mail/thunderbird/patches/patch-bt |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r feb24ebf3d35 -r ba13b1c1237a mail/thunderbird/distinfo
--- a/mail/thunderbird/distinfo Thu Nov 04 20:06:12 2004 +0000
+++ b/mail/thunderbird/distinfo Thu Nov 04 20:06:34 2004 +0000
@@ -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-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 -r feb24ebf3d35 -r ba13b1c1237a mail/thunderbird/patches/patch-bt
--- a/mail/thunderbird/patches/patch-bt Thu Nov 04 20:06:12 2004 +0000
+++ b/mail/thunderbird/patches/patch-bt Thu Nov 04 20:06:34 2004 +0000
@@ -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 @@
 +      (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__)) || \



Home | Main Index | Thread Index | Old Index