mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
devel/pkg-config
This commit is contained in:
parent
1f5a202b48
commit
59ca02a1eb
@ -32,6 +32,11 @@ post-configure:
|
||||
cd ${WRKSRC}/glib; \
|
||||
${GREP} -v HAVE_DTRACE config.h >config.h.new; \
|
||||
${MV} config.h.new config.h
|
||||
|
||||
.if ${OS_VARIANT} == "Minix"
|
||||
USE_GNU_ICONV= yes
|
||||
.include "../../devel/pth/buildlink3.mk"
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.if ${OPSYS} == "SunOS"
|
||||
|
@ -11,6 +11,7 @@ SHA1 (patch-glib_glib_gcharset.c) = b191bc3ca806cff6fa54790fc225ddb35a158d55
|
||||
SHA1 (patch-glib_glib_gconvert.c) = 11a6c7cdd3a4473ff522bf7a0e7ad33653199970
|
||||
SHA1 (patch-glib_glib_gfileutils.c) = bc52e4435ad16a7e7f6780330d4b2b174a3a4411
|
||||
SHA1 (patch-glib_glib_glib.h) = 1c1baedb0f3266d948ded595b70b132821702963
|
||||
SHA1 (patch-glib_glib_gthread-posix.c) = 423a32586781d9dcecb5e1004edf67d769608dc3
|
||||
SHA1 (patch-glib_glib_gutf8.c) = 2ed8ea7b843e3d07392671201c8dfe1111e29065
|
||||
SHA1 (patch-glib_glib_gutils.c) = 60e16596d898324261fd6ae3ab1643beb8cb3ed3
|
||||
SHA1 (patch-glib_glib_gutils.h) = 9fdca0280fa7871c231b75fd6281c72dd621fac4
|
||||
|
16
devel/pkg-config/patches/patch-glib_glib_gthread-posix.c
Normal file
16
devel/pkg-config/patches/patch-glib_glib_gthread-posix.c
Normal file
@ -0,0 +1,16 @@
|
||||
$NetBSD$
|
||||
|
||||
--- glib/glib/gthread-posix.c.orig Tue Oct 2 05:49:07 2012
|
||||
+++ glib/glib/gthread-posix.c
|
||||
@@ -1143,7 +1143,11 @@ g_system_thread_new (GThreadFunc thread_func,
|
||||
void
|
||||
g_thread_yield (void)
|
||||
{
|
||||
+#ifdef __minix
|
||||
+ return;
|
||||
+#else
|
||||
sched_yield ();
|
||||
+#endif
|
||||
}
|
||||
|
||||
void
|
Loading…
x
Reference in New Issue
Block a user