diff options
author | Bastien Nocera <hadess@hadess.net> | 2009-02-02 12:28:48 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2009-02-02 12:28:48 +0000 |
commit | 2fe65dc6ae3ca4c425bcdfda21b79baaaf0cb5d9 (patch) | |
tree | cfd9ba4a764fac11ee74d08a30dd97972daed6bb /configure.ac | |
parent | ac5258d2386fae836684a52e7e36642a1a1cb93e (diff) |
Bug 511671 - Make obex-ftp work over usb connections
2009-02-02 Bastien Nocera <hadess@hadess.net>
Bug 511671 - Make obex-ftp work over usb connections
* configure.ac: Require HAL for the ObexFTP backend
* daemon/Makefile.am:
* daemon/gvfsbackendobexftp.c (_get_numbers_from_usb_path),
(_is_nokia_3650), (_get_bluetooth_name_and_icon),
(_get_bluetooth_device_properties), (_is_same_path),
(_find_ods_usb_intfnum), (_get_usb_intfnum_and_properties),
(do_mount): Add support for USB ObexFTP devices, original
patch from Alexander Kanavin <ak@sensi.org>, requires
current obex-data-server trunk
svn path=/trunk/; revision=2188
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e00bb5c1..2f91f71d 100644 --- a/configure.ac +++ b/configure.ac @@ -259,7 +259,7 @@ msg_obexftp=no OBEXFTP_LIBS= OBEXFTP_CFLAGS= -if test "x$enable_obexftp" != "xno"; then +if test "x$enable_obexftp" != "xno" -a "x$msg_hal" = "xyes" ; then PKG_CHECK_EXISTS(dbus-glib-1 bluez >= 4.0, msg_obexftp=yes) dnl Make sure we have expat |