summaryrefslogtreecommitdiff
path: root/devel/glib2
diff options
context:
space:
mode:
authortron <tron>2003-01-29 10:18:34 +0000
committertron <tron>2003-01-29 10:18:34 +0000
commit1317b72e8ec696e87787de944a19122ee1f88952 (patch)
tree4f3983fe395913960d5cabc65a67ffd5c7e24c71 /devel/glib2
parent39cb730bde522dccaa9223d2e2d77693f827f916 (diff)
downloadpkgsrc-1317b72e8ec696e87787de944a19122ee1f88952.tar.gz
Fix reverted check for "_POSIX_THREAD_PRIORITY_SCHEDULING" in last commit
and bump package revision again.
Diffstat (limited to 'devel/glib2')
-rw-r--r--devel/glib2/Makefile4
-rw-r--r--devel/glib2/patches/patch-aa4
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/glib2/Makefile b/devel/glib2/Makefile
index 4b380937110..49d810f3d46 100644
--- a/devel/glib2/Makefile
+++ b/devel/glib2/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.18 2003/01/28 10:15:41 tron Exp $
+# $NetBSD: Makefile,v 1.19 2003/01/29 10:18:34 tron Exp $
DISTNAME= glib-2.2.0
PKGNAME= ${DISTNAME:S/glib/glib2/}
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= devel
MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/v2.2/ \
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v2.2/ \
diff --git a/devel/glib2/patches/patch-aa b/devel/glib2/patches/patch-aa
index f7809924ca7..d777bea05b2 100644
--- a/devel/glib2/patches/patch-aa
+++ b/devel/glib2/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.7 2003/01/28 18:28:17 tron Exp $
+$NetBSD: patch-aa,v 1.8 2003/01/29 10:18:35 tron Exp $
--- gthread/gthread-posix.c.orig 2002-11-04 21:04:55.000000000 +0100
+++ gthread/gthread-posix.c 2003-01-28 11:05:52.000000000 +0100
@@ -7,7 +7,7 @@ $NetBSD: patch-aa,v 1.7 2003/01/28 18:28:17 tron Exp $
#endif
-#if defined (POSIX_MIN_PRIORITY) && defined (POSIX_MAX_PRIORITY)
-+#if defined (POSIX_MIN_PRIORITY) && defined (POSIX_MAX_PRIORITY) && !defined(_POSIX_THREAD_PRIORITY_SCHEDULING)
++#if defined (POSIX_MIN_PRIORITY) && defined (POSIX_MAX_PRIORITY) && defined(_POSIX_THREAD_PRIORITY_SCHEDULING)
# define HAVE_PRIORITIES 1
static gint priority_normal_value;
# ifdef __FreeBSD__