summaryrefslogtreecommitdiff
path: root/devel/libidn
diff options
context:
space:
mode:
authorwiz <wiz>2010-01-16 18:00:22 +0000
committerwiz <wiz>2010-01-16 18:00:22 +0000
commit36a9b84364fa178d55d89ced485a00d331e06441 (patch)
treebac344f8c3d349e02690f618b509b5c8b6aa1f89 /devel/libidn
parent9851b89718febea25cd3313ad783b51bdcd51be8 (diff)
downloadpkgsrc-36a9b84364fa178d55d89ced485a00d331e06441.tar.gz
Update to 1.16:
** java: Add a Maven pom.xml project file. Contributed by Guus der Kinderen <guus.der.kinderen@gmail.com>. ** Fix a link error on MinGW. ** API and ABI is backwards compatible with the previous version.
Diffstat (limited to 'devel/libidn')
-rw-r--r--devel/libidn/Makefile4
-rw-r--r--devel/libidn/distinfo10
-rw-r--r--devel/libidn/patches/patch-ab13
-rw-r--r--devel/libidn/patches/patch-ac22
4 files changed, 6 insertions, 43 deletions
diff --git a/devel/libidn/Makefile b/devel/libidn/Makefile
index b7f53bb227b..aeddfb77e72 100644
--- a/devel/libidn/Makefile
+++ b/devel/libidn/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.67 2009/06/09 18:37:39 wiz Exp $
+# $NetBSD: Makefile,v 1.68 2010/01/16 18:00:22 wiz Exp $
-DISTNAME= libidn-1.15
+DISTNAME= libidn-1.16
CATEGORIES= devel
MASTER_SITES= ftp://alpha.gnu.org/pub/gnu/libidn/ \
http://ftp.gnu.org/gnu/libidn/
diff --git a/devel/libidn/distinfo b/devel/libidn/distinfo
index 3a3a36e0d60..5617704077a 100644
--- a/devel/libidn/distinfo
+++ b/devel/libidn/distinfo
@@ -1,9 +1,7 @@
-$NetBSD: distinfo,v 1.44 2009/06/11 07:25:30 wiz Exp $
+$NetBSD: distinfo,v 1.45 2010/01/16 18:00:22 wiz Exp $
-SHA1 (libidn-1.15.tar.gz) = 6321660c7072737110b790044cbf8653a95ea175
-RMD160 (libidn-1.15.tar.gz) = fb02015566838cbd86dda5b74f0da9ef78009b1b
-Size (libidn-1.15.tar.gz) = 2635155 bytes
+SHA1 (libidn-1.16.tar.gz) = 33ff88e7111f07f3bb8aa888fdc7848bb319d4ce
+RMD160 (libidn-1.16.tar.gz) = 100dd4ca6169fa3fbdcc01c042ea9f8f861c548f
+Size (libidn-1.16.tar.gz) = 2746588 bytes
SHA1 (patch-aa) = 412f1b609b81ade44c694f1a24f5b37d57c383c0
-SHA1 (patch-ab) = 850e8f30891c58dc9781c7e891e61136c6ed6d3b
-SHA1 (patch-ac) = 0b2eab310a21ca7ea695d0ee01449b7311338d6f
SHA1 (patch-ad) = da7391bb9a1e2302882d2f6681304df91db87b00
diff --git a/devel/libidn/patches/patch-ab b/devel/libidn/patches/patch-ab
deleted file mode 100644
index 10a8b513804..00000000000
--- a/devel/libidn/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2008/09/28 00:43:39 tonnerre Exp $
-
---- lib/gl/strverscmp.c.orig 2008-08-25 17:33:33.000000000 +0200
-+++ lib/gl/strverscmp.c
-@@ -58,7 +58,7 @@
- */
-
- int
--__strverscmp (const char *s1, const char *s2)
-+libidn_strverscmp (const char *s1, const char *s2)
- {
- const unsigned char *p1 = (const unsigned char *) s1;
- const unsigned char *p2 = (const unsigned char *) s2;
diff --git a/devel/libidn/patches/patch-ac b/devel/libidn/patches/patch-ac
deleted file mode 100644
index feed2c011a7..00000000000
--- a/devel/libidn/patches/patch-ac
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2008/09/28 00:43:39 tonnerre Exp $
-
---- lib/gl/string.in.h.orig 2008-08-25 17:33:33.000000000 +0200
-+++ lib/gl/string.in.h
-@@ -578,14 +578,15 @@ extern char *strsignal (int __sig);
-
- #if @GNULIB_STRVERSCMP@
- # if !@HAVE_STRVERSCMP@
--extern int strverscmp (const char *, const char *);
-+#define strverscmp libidn_strverscmp
-+extern int libidn_strverscmp (const char *, const char *);
- # endif
- #elif defined GNULIB_POSIXCHECK
- # undef strverscmp
- # define strverscmp(a, b) \
- (GL_LINK_WARNING ("strverscmp is unportable - " \
- "use gnulib module strverscmp for portability"), \
-- strverscmp (a, b))
-+ libidn_strverscmp (a, b))
- #endif
-
-