diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-09 02:41:44 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-09 02:41:44 +0000 |
commit | 5975fe3c40f8cb4032277cb094a685f7036437ff (patch) | |
tree | 65813ab731117bd28cdfcbdcf1e32288eb5a6d7d /devel/dbus | |
parent | c3c61e0604dc069c487ae47e3e1b21095e0840d2 (diff) | |
download | ports-5975fe3c40f8cb4032277cb094a685f7036437ff.tar.gz ports-5975fe3c40f8cb4032277cb094a685f7036437ff.zip |
Notes
Diffstat (limited to 'devel/dbus')
-rw-r--r-- | devel/dbus/Makefile | 1 | ||||
-rw-r--r-- | devel/dbus/files/patch-glib_dbus-gidl.c | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index 50c69829a525..b6d250b24418 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -7,6 +7,7 @@ PORTNAME= dbus PORTVERSION= 0.32 +PORTREVISION= 1 CATEGORIES?= devel gnome MASTER_SITES= http://dbus.freedesktop.org/releases/ diff --git a/devel/dbus/files/patch-glib_dbus-gidl.c b/devel/dbus/files/patch-glib_dbus-gidl.c new file mode 100644 index 000000000000..a4a5d3fac947 --- /dev/null +++ b/devel/dbus/files/patch-glib_dbus-gidl.c @@ -0,0 +1,22 @@ +--- glib/dbus-gidl.c.orig Fri Apr 8 22:38:35 2005 ++++ glib/dbus-gidl.c Fri Apr 8 22:37:53 2005 +@@ -661,8 +661,8 @@ property_info_unref (PropertyInfo *info) + info->base.refcount -= 1; + if (info->base.refcount == 0) + { +- base_info_free (info); + g_free (info->type); ++ base_info_free (info); + } + } + +@@ -717,8 +717,8 @@ arg_info_unref (ArgInfo *info) + info->base.refcount -= 1; + if (info->base.refcount == 0) + { +- base_info_free (info); + g_free (info->type); ++ base_info_free (info); + } + } + const char* |