diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-05-15 05:29:01 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-05-15 05:29:01 +0800 |
commit | 178f26e86b5608f8d9b39500ded2a9518d8c76d8 (patch) | |
tree | 425ab9c92508cccf3912ef2f9d3506f142f60a73 /sysutils/hal/files | |
parent | 5ba0266aae2c94f8b8746b230ddf61763212eddd (diff) | |
download | marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.tar marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.tar.gz marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.tar.bz2 marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.tar.lz marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.tar.xz marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.tar.zst marcuscom-ports-178f26e86b5608f8d9b39500ded2a9518d8c76d8.zip |
Update to today's FreeBSD HAL snapshot. The most notable changes in this
release are:
* Fixed user volume mount point permissions
* hald can now be run in daemon mode and verbose messages will be written
to syslog
* DVD+RW DL support has been added
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6253 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils/hal/files')
-rw-r--r-- | sysutils/hal/files/patch-tools_Makefile.in | 4 | ||||
-rw-r--r-- | sysutils/hal/files/patch-tools_hal-storage-mount.c | 20 |
2 files changed, 2 insertions, 22 deletions
diff --git a/sysutils/hal/files/patch-tools_Makefile.in b/sysutils/hal/files/patch-tools_Makefile.in index 3c9aba59a..c5ce92827 100644 --- a/sysutils/hal/files/patch-tools_Makefile.in +++ b/sysutils/hal/files/patch-tools_Makefile.in @@ -4,8 +4,8 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ --SUBDIRS = linux device-manager -+SUBDIRS = device-manager +-SUBDIRS = freebsd linux device-manager ++SUBDIRS = freebsd device-manager INCLUDES = \ -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \ diff --git a/sysutils/hal/files/patch-tools_hal-storage-mount.c b/sysutils/hal/files/patch-tools_hal-storage-mount.c deleted file mode 100644 index 062a68a3f..000000000 --- a/sysutils/hal/files/patch-tools_hal-storage-mount.c +++ /dev/null @@ -1,20 +0,0 @@ ---- tools/hal-storage-mount.c.orig Sun May 14 16:52:00 2006 -+++ tools/hal-storage-mount.c Sun May 14 16:52:51 2006 -@@ -441,6 +441,7 @@ handle_mount (LibHalContext *hal_ctx, Li - gboolean pol_change_uid; - char *privilege; - gboolean allowed_by_privilege; -+ gboolean is_temporary_privilege; - gboolean explicit_mount_point_given; - const char *end; - -@@ -673,7 +674,8 @@ handle_mount (LibHalContext *hal_ctx, Li - invoked_by_uid, - privilege, - udi, -- &allowed_by_privilege) != LIBPOLKIT_RESULT_OK) { -+ &allowed_by_privilege, -+ &is_temporary_privilege) != LIBPOLKIT_RESULT_OK) { - printf ("cannot lookup privilege\n"); - unknown_error (); - } |