diff options
author | prlw1 <prlw1@pkgsrc.org> | 2013-04-19 14:56:20 +0000 |
---|---|---|
committer | prlw1 <prlw1@pkgsrc.org> | 2013-04-19 14:56:20 +0000 |
commit | 8eba1343cf154064d6b275cc6d6ee971967232a0 (patch) | |
tree | 68b61802e1807806bf1dd6f4b7f95c45a738ea13 /devel/libbonobo | |
parent | a72f11a786d762dbf303c84817049940523c94c5 (diff) | |
download | pkgsrc-8eba1343cf154064d6b275cc6d6ee971967232a0.tar.gz |
Avoid compilation error caused by use of GStaticRecMutex which was
deprecated in GLib 2.32 - needed for a successful compile with
GLib 2.36.
Diffstat (limited to 'devel/libbonobo')
-rw-r--r-- | devel/libbonobo/distinfo | 3 | ||||
-rw-r--r-- | devel/libbonobo/patches/patch-activation-server_Makefile.in | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/devel/libbonobo/distinfo b/devel/libbonobo/distinfo index d4784923cf4..bbe427bf620 100644 --- a/devel/libbonobo/distinfo +++ b/devel/libbonobo/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.31 2010/11/15 18:32:25 drochner Exp $ +$NetBSD: distinfo,v 1.32 2013/04/19 14:56:20 prlw1 Exp $ SHA1 (libbonobo-2.32.0.tar.bz2) = 461117e2fee8e9d06e5533c08bd1fa2cc2107735 RMD160 (libbonobo-2.32.0.tar.bz2) = c2b0d5f2e37cfbe4bc18e3e328b95f53f9bbadfc Size (libbonobo-2.32.0.tar.bz2) = 1373333 bytes SHA1 (patch-aa) = 1144bc79aef6990ba15c565a01438dd41d1a085a SHA1 (patch-ab) = 320fc0a2be131a0ab6b200643fb733f80899a005 +SHA1 (patch-activation-server_Makefile.in) = b0383df4988296abafe682a67ac162782301655d diff --git a/devel/libbonobo/patches/patch-activation-server_Makefile.in b/devel/libbonobo/patches/patch-activation-server_Makefile.in new file mode 100644 index 00000000000..c7eca0f0ba6 --- /dev/null +++ b/devel/libbonobo/patches/patch-activation-server_Makefile.in @@ -0,0 +1,16 @@ +$NetBSD: patch-activation-server_Makefile.in,v 1.1 2013/04/19 14:56:20 prlw1 Exp $ + +Avoid compilation error caused by use of GStaticRecMutex which was +deprecated in GLib 2.32 - needed for a successful compile with +GLib 2.36. + +--- activation-server/Makefile.in.orig 2013-04-19 14:38:19.000000000 +0000 ++++ activation-server/Makefile.in +@@ -341,7 +341,6 @@ INCLUDES = \ + $(SERVER_CFLAGS) \ + $(WARN_CFLAGS) \ + -DSERVER_CONFDIR=\"$(sysconfdir)\" \ +- -DG_DISABLE_DEPRECATED \ + -DG_LOG_DOMAIN=\"Bonobo-Activation-Server\" \ + $(NULL) + |