Wed Aug 22 19:46:59 2012 UTC ()
Oops, credit should be given to Anthony Mallet (PR 46698)


(dholland)
diff -r1.12 -r1.13 pkgsrc/print/xetex/distinfo
diff -r1.1 -r1.2 pkgsrc/print/xetex/patches/patch-libs_icu_icu-49_1_configure

cvs diff -r1.12 -r1.13 pkgsrc/print/xetex/distinfo (expand / switch to unified diff)

--- pkgsrc/print/xetex/distinfo 2012/08/22 19:44:27 1.12
+++ pkgsrc/print/xetex/distinfo 2012/08/22 19:46:58 1.13
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.12 2012/08/22 19:44:27 dholland Exp $ 1$NetBSD: distinfo,v 1.13 2012/08/22 19:46:58 dholland Exp $
2 2
3SHA1 (texlive-20120701-source.tar.xz) = e41ef31eba27891f3434e01638d3559cc6958016 3SHA1 (texlive-20120701-source.tar.xz) = e41ef31eba27891f3434e01638d3559cc6958016
4RMD160 (texlive-20120701-source.tar.xz) = df09b657919a3f203309645028803098f52bbac9 4RMD160 (texlive-20120701-source.tar.xz) = df09b657919a3f203309645028803098f52bbac9
5Size (texlive-20120701-source.tar.xz) = 131904044 bytes 5Size (texlive-20120701-source.tar.xz) = 131904044 bytes
6SHA1 (patch-libs_icu_icu-49_1_configure) = 3e21058a60b628c948b5156f911eab2aa5e4aaf7 6SHA1 (patch-libs_icu_icu-49_1_configure) = fdb232e4b5ccf0a34ea48964352831cdd0f884ee
7SHA1 (patch-texk_web2c_xetexdir_XeTeX__ext.c) = a83e842b567db6acb35cfab5303a7e96845fa953 7SHA1 (patch-texk_web2c_xetexdir_XeTeX__ext.c) = a83e842b567db6acb35cfab5303a7e96845fa953

cvs diff -r1.1 -r1.2 pkgsrc/print/xetex/patches/Attic/patch-libs_icu_icu-49_1_configure (expand / switch to unified diff)

--- pkgsrc/print/xetex/patches/Attic/patch-libs_icu_icu-49_1_configure 2012/08/22 19:44:28 1.1
+++ pkgsrc/print/xetex/patches/Attic/patch-libs_icu_icu-49_1_configure 2012/08/22 19:46:58 1.2
@@ -1,18 +1,19 @@ @@ -1,18 +1,19 @@
1$NetBSD: patch-libs_icu_icu-49_1_configure,v 1.1 2012/08/22 19:44:28 dholland Exp $ 1$NetBSD: patch-libs_icu_icu-49_1_configure,v 1.2 2012/08/22 19:46:58 dholland Exp $
2 2
3Disable -ffunction-sections -fdata-sections and accompanying 3Disable -ffunction-sections -fdata-sections and accompanying
4--gc-sections on netbsd because --gc-sections doesn't work with the 4--gc-sections on netbsd because --gc-sections doesn't work with the
5netbsd-4 and netbsd-5 linker. See PR 46698 and PR 40401. 5netbsd-4 and netbsd-5 linker. See PR 46698 and PR 40401. Thanks to
 6Anthony Mallet for tracking the problem down.
6 7
7At some point this patch should probably be made less blunt, and/or 8At some point this patch should probably be made less blunt, and/or
8upstream should fix it to test if the options work instead of going by 9upstream should fix it to test if the options work instead of going by
9OS type. 10OS type.
10 11
11--- libs/icu/icu-49.1/configure~ 2012-03-21 15:06:23.000000000 +0000 12--- libs/icu/icu-49.1/configure~ 2012-03-21 15:06:23.000000000 +0000
12+++ libs/icu/icu-49.1/configure 13+++ libs/icu/icu-49.1/configure
13@@ -5259,6 +5259,9 @@ $as_echo_n "checking whether we can use  14@@ -5259,6 +5259,9 @@ $as_echo_n "checking whether we can use
14 OLD_LDFLAGS="${LDFLAGS}" 15 OLD_LDFLAGS="${LDFLAGS}"
15  16
16 case "${host}" in 17 case "${host}" in
17+ *-netbsd*) 18+ *-netbsd*)
18+ # --gc-sections does not work on netbsd-4 and netbsd-5 19+ # --gc-sections does not work on netbsd-4 and netbsd-5