summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordsainty <dsainty>2009-09-01 02:57:26 +0000
committerdsainty <dsainty>2009-09-01 02:57:26 +0000
commit306bde314dd1121b5b846168721849fb88ccdcf5 (patch)
treee5b3032e43afc30eb377f7f5c3f3dce8073ed214
parent44b204bdbe00d56101013a0ee80d3b35d8673230 (diff)
downloadpkgsrc-306bde314dd1121b5b846168721849fb88ccdcf5.tar.gz
Fix patch-nb on Linux by pulling in <stdint.h> before using uint64_t. This
only affects platforms that would not previously complete building, so no PKGREVISION++ required.
-rw-r--r--www/firefox/distinfo4
-rw-r--r--www/firefox/patches/patch-nb7
2 files changed, 7 insertions, 4 deletions
diff --git a/www/firefox/distinfo b/www/firefox/distinfo
index 72ccbd2b91a..841d086fb23 100644
--- a/www/firefox/distinfo
+++ b/www/firefox/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.91 2009/08/26 21:42:25 martin Exp $
+$NetBSD: distinfo,v 1.92 2009/09/01 02:57:26 dsainty Exp $
SHA1 (firefox-3.5.2-source.tar.bz2) = 6439923ff9d316297926ebe193bac3ac1a41b494
RMD160 (firefox-3.5.2-source.tar.bz2) = d5e0b5f0e8b19b216394584ccabf37d776b89a39
@@ -39,7 +39,7 @@ SHA1 (patch-mm) = faabab8816522bd9a74c2e6e65b2ae3d791affe0
SHA1 (patch-mn) = 17641f46ecf1019f3cc02583a22baa9f9a327d1f
SHA1 (patch-mp) = 33128f10b6146419bcebd85f7e6e7fa72e770be1
SHA1 (patch-na) = 10a09ddb5de67c3cc2f605c75de7ac2e30a92ae7
-SHA1 (patch-nb) = 15fc7774b3073bfb6620b04e23415bf3f1132981
+SHA1 (patch-nb) = 6b1719219df7cdd7bf5335fcf7f48567a37ffa87
SHA1 (patch-nc) = f2a3cc803a114702e856947c25fd79baa85b0e26
SHA1 (patch-xa) = ae5ed1f0fb9a0fd45242a94739853b199ed7da72
SHA1 (patch-xb) = c09bd676d21bef02e04c68c2362e32f408ea9201
diff --git a/www/firefox/patches/patch-nb b/www/firefox/patches/patch-nb
index ea71aba5d6c..ee03ac1b01f 100644
--- a/www/firefox/patches/patch-nb
+++ b/www/firefox/patches/patch-nb
@@ -1,11 +1,11 @@
-$NetBSD: patch-nb,v 1.2 2009/08/26 21:42:25 martin Exp $
+$NetBSD: patch-nb,v 1.3 2009/09/01 02:57:26 dsainty Exp $
# reported upstream as:
# https://bugzilla.mozilla.org/show_bug.cgi?id=512792
--- media/liboggz/src/liboggz/oggz_byteorder.h.orig 2009-08-26 22:28:18.000000000 +0200
+++ media/liboggz/src/liboggz/oggz_byteorder.h 2009-08-26 22:41:39.000000000 +0200
-@@ -123,4 +123,24 @@ int32_be_at (unsigned char *c)
+@@ -123,4 +123,27 @@ int32_be_at (unsigned char *c)
return (c [0] << 24) + (c [1] << 16) + (c [2] << 8) + c [3] ;
}
@@ -15,6 +15,9 @@ $NetBSD: patch-nb,v 1.2 2009/08/26 21:42:25 martin Exp $
+ return (c [3] << 24) + (c [2] << 16) + (c [1] << 8) + c [0] ;
+}
+
++#ifdef HAVE_STDINT_H
++#include <stdint.h>
++#endif
+static uint64_t
+_le_64_at (unsigned char *c)
+{