diff options
-rw-r--r-- | sysutils/hal/Makefile | 3 | ||||
-rw-r--r-- | sysutils/hal/files/patch-hald_device.c | 11 | ||||
-rw-r--r-- | sysutils/hal/files/patch-hald_device_store.c | 12 |
3 files changed, 25 insertions, 1 deletions
diff --git a/sysutils/hal/Makefile b/sysutils/hal/Makefile index c1f832e5d..c4b156929 100644 --- a/sysutils/hal/Makefile +++ b/sysutils/hal/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/sysutils/hal/Makefile,v 1.37 2008/02/18 22:01:37 marcus Exp $ +# $MCom: ports/sysutils/hal/Makefile,v 1.38 2008/03/15 18:32:12 marcus Exp $ # PORTNAME= hal DISTVERSION= 0.5.11rc1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://hal.freedesktop.org/releases/ diff --git a/sysutils/hal/files/patch-hald_device.c b/sysutils/hal/files/patch-hald_device.c new file mode 100644 index 000000000..8e5ed0a73 --- /dev/null +++ b/sysutils/hal/files/patch-hald_device.c @@ -0,0 +1,11 @@ +--- hald/device.c.orig 2008-03-15 19:13:58.000000000 -0400 ++++ hald/device.c 2008-03-15 19:14:45.000000000 -0400 +@@ -871,7 +871,7 @@ hdpfe (gpointer key, + { + hdpfe_ud_t *c; + HalProperty *prop; +- const gchar *key_string = g_quark_to_string ((GQuark) key); ++ const gchar *key_string = g_quark_to_string ((GQuark) GPOINTER_TO_UINT(key)); + + c = (hdpfe_ud_t *) user_data; + prop = (HalProperty *) value; diff --git a/sysutils/hal/files/patch-hald_device_store.c b/sysutils/hal/files/patch-hald_device_store.c new file mode 100644 index 000000000..24bd1c2d3 --- /dev/null +++ b/sysutils/hal/files/patch-hald_device_store.c @@ -0,0 +1,12 @@ +--- hald/device_store.c.orig 2008-03-15 19:15:15.000000000 -0400 ++++ hald/device_store.c 2008-03-15 19:16:30.000000000 -0400 +@@ -292,6 +292,9 @@ hal_device_store_remove (HalDeviceStore + (gpointer)emit_device_property_changed, + store); + g_signal_handlers_disconnect_by_func (device, ++ (gpointer)device_pre_property_changed, ++ store); ++ g_signal_handlers_disconnect_by_func (device, + (gpointer)emit_device_capability_added, + store); + g_signal_handlers_disconnect_by_func (device, |