summaryrefslogtreecommitdiff
path: root/devel/glib2/patches/patch-an
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2010-05-31 17:30:36 +0000
committerdrochner <drochner@pkgsrc.org>2010-05-31 17:30:36 +0000
commit39dc1dee0c88442f84ae440c1052e8589e85ee95 (patch)
tree18372fbb3752cfb9ef1aa126d5f4368bde6125b4 /devel/glib2/patches/patch-an
parentc5119cd2553775263997f87e5f558832bb318a1b (diff)
downloadpkgsrc-39dc1dee0c88442f84ae440c1052e8589e85ee95.tar.gz
update to 2.24.1
this switches to the gnome-2.30 branch
Diffstat (limited to 'devel/glib2/patches/patch-an')
-rw-r--r--devel/glib2/patches/patch-an27
1 files changed, 0 insertions, 27 deletions
diff --git a/devel/glib2/patches/patch-an b/devel/glib2/patches/patch-an
deleted file mode 100644
index 24c2d62d6da..00000000000
--- a/devel/glib2/patches/patch-an
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-an,v 1.2 2010/02/19 19:46:53 roy Exp $
-
-Use RTLD_DEFAULT if the platform defines it.
-
-Upstream URL
-https://bugzilla.gnome.org/show_bug.cgi?id=610490
-
---- gmodule/gmodule-dl.c 2009-04-01 00:04:20.000000000 +0100
-+++ gmodule/gmodule-dl.c 2010-02-19 07:13:26.000000000 +0000
-@@ -107,6 +107,9 @@
- static gpointer
- _g_module_self (void)
- {
-+#ifdef RTLD_DEFAULT
-+ return RTLD_DEFAULT;
-+#else
- gpointer handle;
-
- /* to query symbols from the program itself, special link options
-@@ -118,6 +121,7 @@
- g_module_set_error (fetch_dlerror (TRUE));
-
- return handle;
-+#endif
- }
-
- static void