diff options
author | Sven Neumann <s.neumann@raumfeld.com> | 2009-10-18 23:56:22 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-20 22:42:44 +0200 |
commit | 7d5d638a892949cd4033d2284a5777e0cb34591b (patch) | |
tree | f4d66f7ad8f6ad435fa254a06772cd29cc1ebe4a | |
parent | 0cbfcbe43358ab37f94886b90db70bdb5f8e338c (diff) | |
download | buildroot-novena-7d5d638a892949cd4033d2284a5777e0cb34591b.tar.gz buildroot-novena-7d5d638a892949cd4033d2284a5777e0cb34591b.zip |
gvfs: explicitly specify samba include and library paths
The gvfs configure script has --with-samba-includes and
--with-samba-libs options. Use these to point it to the
libsmbclient files in the staging dir.
Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/gvfs/gvfs.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk index 94a5eb76b..7d71f34a1 100644 --- a/package/gvfs/gvfs.mk +++ b/package/gvfs/gvfs.mk @@ -63,6 +63,8 @@ ifeq ($(BR2_PACKAGE_SAMBA_LIBSMBCLIENT),y) GVFS_DEPENDENCIES += samba GVFS_CONF_OPT += \ --enable-samba \ + --with-samba-includes=$(STAGING_DIR)/usr/include \ + --with-samba-libs=$(STAGING_DIR)/usr/lib \ ac_cv_lib_smbclient_smbc_option_get=yes else GVFS_CONF_OPT += --disable-samba |