diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,7 +1,11 @@ -2007-12-11 Miklos Szeredi <miklos@szeredi.hu> +2007-12-17 Miklos Szeredi <miklos@szeredi.hu> * Released 1.9 +2007-12-12 Miklos Szeredi <miklos@szeredi.hu> + + * Fix checking for fuse_opt_parse in configure + 2007-12-11 Miklos Szeredi <miklos@szeredi.hu> * Fill in st_ctime attribute with st_mtime, instead of leaving it diff --git a/configure.ac b/configure.ac index d7faee0..1e5f27d 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,10 @@ AM_CONDITIONAL(SSH_NODELAY_SO, test "$enable_sshnodelay" != "no") export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH PKG_CHECK_MODULES(SSHFS, [fuse >= 2.2 glib-2.0 gthread-2.0]) have_fuse_opt_parse=no +oldlibs="$LIBS" +LIBS="$LIBS $SSHFS_LIBS" AC_CHECK_FUNC([fuse_opt_parse], [have_fuse_opt_parse=yes]) +LIBS="$oldlibs" if test "$have_fuse_opt_parse" = no; then CFLAGS="$CFLAGS -Icompat" fi |