diff options
author | tron <tron@pkgsrc.org> | 2003-01-29 10:18:34 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2003-01-29 10:18:34 +0000 |
commit | 70c2781912dca6973161fb05899dec3a352bc5b7 (patch) | |
tree | 4f3983fe395913960d5cabc65a67ffd5c7e24c71 /devel | |
parent | 855c36cf9e2775ae429a6334c7004b07aadd3212 (diff) | |
download | pkgsrc-70c2781912dca6973161fb05899dec3a352bc5b7.tar.gz |
Fix reverted check for "_POSIX_THREAD_PRIORITY_SCHEDULING" in last commit
and bump package revision again.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/glib2/Makefile | 4 | ||||
-rw-r--r-- | devel/glib2/patches/patch-aa | 4 |
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__ |