summaryrefslogtreecommitdiff
path: root/x11/libxkbfile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2015-05-01 08:41:32 +0000
committerwiz <wiz@pkgsrc.org>2015-05-01 08:41:32 +0000
commiteceb26e3d1cc6b90bb47b9273b9f1d69b813ea2a (patch)
tree96c4ec236dd70ef336da774fddcaf5dfa66b58cd /x11/libxkbfile
parent0da485cbf023202978b116c17370f41e316168d0 (diff)
downloadpkgsrc-eceb26e3d1cc6b90bb47b9273b9f1d69b813ea2a.tar.gz
Update to 1.0.9:
This minor maintenance release provides the usual recent collection of build configuration improvements and janitorial cleanups. Adam Jackson (1): configure: Remove AM_MAINTAINER_MODE Alan Coopersmith (8): Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS Convert to X.Org standard indentation style unifdef -UXKB_IN_SERVER Don't dereference xkb pointer until after checking it for NULL Convert sprintf calls to snprintf Constify atom name argument to XkbInternAtom Remove check to see if SEEK_SET is defined before using it libxkbfile 1.0.9 Colin Walters (1): autogen.sh: Implement GNOME Build API Jörg Sonnenberger (1): Remove unnecessary check.
Diffstat (limited to 'x11/libxkbfile')
-rw-r--r--x11/libxkbfile/Makefile5
-rw-r--r--x11/libxkbfile/distinfo9
-rw-r--r--x11/libxkbfile/patches/patch-src_cout.c13
3 files changed, 6 insertions, 21 deletions
diff --git a/x11/libxkbfile/Makefile b/x11/libxkbfile/Makefile
index 027bd846e23..885b4e4c2c8 100644
--- a/x11/libxkbfile/Makefile
+++ b/x11/libxkbfile/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2012/10/29 05:06:38 asau Exp $
-#
+# $NetBSD: Makefile,v 1.8 2015/05/01 08:41:32 wiz Exp $
-DISTNAME= libxkbfile-1.0.8
+DISTNAME= libxkbfile-1.0.9
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_XORG:=lib/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/libxkbfile/distinfo b/x11/libxkbfile/distinfo
index 4ca46850451..e2487df7bae 100644
--- a/x11/libxkbfile/distinfo
+++ b/x11/libxkbfile/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.5 2014/11/25 15:05:15 joerg Exp $
+$NetBSD: distinfo,v 1.6 2015/05/01 08:41:32 wiz Exp $
-SHA1 (libxkbfile-1.0.8.tar.bz2) = 05139829837c26e3a14a40a700f058c018bc71f5
-RMD160 (libxkbfile-1.0.8.tar.bz2) = f60f49551ecff5fc40c7e51a96984fa60adfe3da
-Size (libxkbfile-1.0.8.tar.bz2) = 335788 bytes
-SHA1 (patch-src_cout.c) = 1f2741e22195fc0ea42deedb536ee35c1b2c3487
+SHA1 (libxkbfile-1.0.9.tar.bz2) = d708d3415212febbc67d4d996d02d7e3218e13ad
+RMD160 (libxkbfile-1.0.9.tar.bz2) = b1fe8ac27b5d69640e0e76fa2b372b2746f2f7ed
+Size (libxkbfile-1.0.9.tar.bz2) = 348009 bytes
diff --git a/x11/libxkbfile/patches/patch-src_cout.c b/x11/libxkbfile/patches/patch-src_cout.c
deleted file mode 100644
index 4cb0dea490c..00000000000
--- a/x11/libxkbfile/patches/patch-src_cout.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_cout.c,v 1.1 2014/11/25 15:05:16 joerg Exp $
-
---- src/cout.c.orig 2014-11-23 15:12:18.000000000 +0000
-+++ src/cout.c
-@@ -45,7 +45,7 @@ WriteCHdrVMods(FILE *file,Display *dpy,X
- {
- register int i,nOut;
-
-- if ((!xkb)||(!xkb->names)||(!xkb->names->vmods))
-+ if ((!xkb)||(!xkb->names))
- return False;
- for (i=nOut=0;i<XkbNumVirtualMods;i++) {
- if (xkb->names->vmods[i]!=None) {