summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-08-21 14:09:18 +0200
committerPacho Ramos <pacho@gentoo.org>2016-08-21 14:43:44 +0200
commit7a973faf9a634607f0b5ef16f7e78f8d02808275 (patch)
treeb80a747698e8f339826d70204e62499ef2d37377 /dev-libs/yaz/files
parentdev-util/glade: drop old (#575216) (diff)
downloadgentoo-7a973faf9a634607f0b5ef16f7e78f8d02808275.tar.gz
gentoo-7a973faf9a634607f0b5ef16f7e78f8d02808275.tar.bz2
gentoo-7a973faf9a634607f0b5ef16f7e78f8d02808275.zip
dev-libs/yaz: drop hard masked versions (#587144)
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-libs/yaz/files')
-rw-r--r--dev-libs/yaz/files/yaz-4.2.30-icu-automagic.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-libs/yaz/files/yaz-4.2.30-icu-automagic.patch b/dev-libs/yaz/files/yaz-4.2.30-icu-automagic.patch
deleted file mode 100644
index e6854448b513..000000000000
--- a/dev-libs/yaz/files/yaz-4.2.30-icu-automagic.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -Nuar yaz-4.2.30.orig/configure.ac yaz-4.2.30/configure.ac
---- yaz-4.2.30.orig/configure.ac 2012-03-23 10:20:20.000000000 +0000
-+++ yaz-4.2.30/configure.ac 2012-04-22 20:56:41.118691087 +0000
-@@ -372,14 +372,13 @@
-
- dnl
- dnl
--AC_CHECK_ICU([3.4],[
-- if test "$xml_enabled" = "true"; then
-- ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"
-- else
-- ICU_CPPFLAGS=""
-- AC_MSG_WARN([ICU support disabled because XML support is unavailable])
-- fi
--])
-+AC_ARG_ENABLE(icu, [ --enable-icu enable ICU support],[enable_icu=$enableval],[enable_icu=no])
-+if test "$enable_icu" = "yes"; then
-+ AC_CHECK_ICU([3.4],[
-+ ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"],[
-+ AC_MSG_ERROR([For ICU support please install libicu34-dev or similar])
-+ ])
-+fi
- dnl ------ versioning
- dnl
- WIN_FILEVERSION=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { m = $4; printf("%d,%d,%d,%d", $1, $2, $3 == "" ? "0" : $3, $4 == "" ? "1" : $4);}'`