Thu Jun 5 07:55:09 2008 UTC ()
Add URL to upstream bug report in patch comment.


(dsainty)
diff -r1.31 -r1.32 pkgsrc/devel/doxygen/distinfo
diff -r1.5 -r1.6 pkgsrc/devel/doxygen/patches/patch-ad

cvs diff -r1.31 -r1.32 pkgsrc/devel/doxygen/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/doxygen/distinfo 2008/06/04 15:05:39 1.31
+++ pkgsrc/devel/doxygen/distinfo 2008/06/05 07:55:09 1.32
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1$NetBSD: distinfo,v 1.31 2008/06/04 15:05:39 dsainty Exp $ 1$NetBSD: distinfo,v 1.32 2008/06/05 07:55:09 dsainty Exp $
2 2
3SHA1 (doxygen-1.5.6.src.tar.gz) = a478176b9183aef299418e655d6e38b8f8f4e4a5 3SHA1 (doxygen-1.5.6.src.tar.gz) = a478176b9183aef299418e655d6e38b8f8f4e4a5
4RMD160 (doxygen-1.5.6.src.tar.gz) = 94c0d1fe325fa6c9f4a86e2a68e7516dccc4108b 4RMD160 (doxygen-1.5.6.src.tar.gz) = 94c0d1fe325fa6c9f4a86e2a68e7516dccc4108b
5Size (doxygen-1.5.6.src.tar.gz) = 4011956 bytes 5Size (doxygen-1.5.6.src.tar.gz) = 4011956 bytes
6SHA1 (patch-aa) = dd970fa86865ee1eca0d41a86366a608e19b582a 6SHA1 (patch-aa) = dd970fa86865ee1eca0d41a86366a608e19b582a
7SHA1 (patch-ab) = f85f15c38877e7d646b3cc981564de8436c2a5af 7SHA1 (patch-ab) = f85f15c38877e7d646b3cc981564de8436c2a5af
8SHA1 (patch-ac) = 5523e5b146436a50b008f963a0b809379a9e4974 8SHA1 (patch-ac) = 5523e5b146436a50b008f963a0b809379a9e4974
9SHA1 (patch-ad) = 26badd3a4867277f01f5634c9fc25fbe1b93d1c5 9SHA1 (patch-ad) = e06da37357b5d49e89c78d3eb31c2428ebed395b
10SHA1 (patch-af) = b52845ca3d4d58a876538e8b4780a19419aabe75 10SHA1 (patch-af) = b52845ca3d4d58a876538e8b4780a19419aabe75
11SHA1 (patch-ag) = a7cf7cd0b510e9a8293e5f8a43517cfc80a60d15 11SHA1 (patch-ag) = a7cf7cd0b510e9a8293e5f8a43517cfc80a60d15
12SHA1 (patch-ah) = aa5a701f0586aa99fdb140f8d7fa63ca14d9f460 12SHA1 (patch-ah) = aa5a701f0586aa99fdb140f8d7fa63ca14d9f460

cvs diff -r1.5 -r1.6 pkgsrc/devel/doxygen/patches/Attic/patch-ad (expand / switch to unified diff)

--- pkgsrc/devel/doxygen/patches/Attic/patch-ad 2008/06/04 15:05:39 1.5
+++ pkgsrc/devel/doxygen/patches/Attic/patch-ad 2008/06/05 07:55:09 1.6
@@ -1,15 +1,17 @@ @@ -1,15 +1,17 @@
1$NetBSD: patch-ad,v 1.5 2008/06/04 15:05:39 dsainty Exp $ 1$NetBSD: patch-ad,v 1.6 2008/06/05 07:55:09 dsainty Exp $
2 2
3The cast breaks compilation on NetBSD, as iconv() expects const char**. 3The cast breaks compilation on NetBSD, as iconv() expects const char**.
4 4
 5Submitted as: https://bugzilla.gnome.org/show_bug.cgi?id=536629
 6
5--- src/portable.cpp.orig 2008-01-01 23:41:08.000000000 +1300 7--- src/portable.cpp.orig 2008-01-01 23:41:08.000000000 +1300
6+++ src/portable.cpp 2008-06-05 02:06:00.000000000 +1200 8+++ src/portable.cpp 2008-06-05 02:06:00.000000000 +1200
7@@ -382,7 +382,7 @@ 9@@ -382,7 +382,7 @@
8 // avoid a compile error, that is were the CASTNEEDED is for. 10 // avoid a compile error, that is were the CASTNEEDED is for.
9 #if ((defined(_LIBICONV_VERSION) && (_LIBICONV_VERSION>=0x0109) && \ 11 #if ((defined(_LIBICONV_VERSION) && (_LIBICONV_VERSION>=0x0109) && \
10 !((defined(_OS_MAC_) || defined(Q_OS_MACX) )&& (_LIBICONV_VERSION==0x010B))) \ 12 !((defined(_OS_MAC_) || defined(Q_OS_MACX) )&& (_LIBICONV_VERSION==0x010B))) \
11- || defined(_OS_SOLARIS_)) 13- || defined(_OS_SOLARIS_))
12+ || defined(_OS_SOLARIS_) || defined(_OS_NETBSD_)) 14+ || defined(_OS_SOLARIS_) || defined(_OS_NETBSD_))
13 #define CASTNEEDED(x) (x) 15 #define CASTNEEDED(x) (x)
14 #else 16 #else
15 #define CASTNEEDED(x) (char **)(x) 17 #define CASTNEEDED(x) (char **)(x)