On Fri, 12 Oct 2007, Jean-Pierre ANDRE wrote:

> I was wondering why I had the warning about fuse
> not installed with root directory on 64-bit
> compilations and not on 32-bit compilations, though
> I am using the same versions.
> 
> It is just because configures test the wrong
> directory (just at the end of file) :
> 
> if test "x$FUSE_LIB_PATH" != "x-L/lib"; then
> 
> /lib is only for 32-bit files, 64-bit files
> are on /lib64 (many shared objects have to be
> present in both modes to serve both types of
> applications).

Hi Jean-Pierre,

Thanks, nice catch! The attached patch should fix it. 
Would you try please? Tools and scripts are mangling 
the needed info in diferent way and nothing is guaranteed
to work even if the fix looks simple. Thanks.

Regards,
            Szaka
diff -u -p -r1.42 configure.ac
--- configure.ac        10 Oct 2007 19:56:15 -0000      1.42
+++ configure.ac        13 Oct 2007 12:06:44 -0000
@@ -219,7 +219,7 @@ AC_CONFIG_FILES([
 ])
 AC_OUTPUT
 
-if test "x$FUSE_LIB_PATH" != "x-L/lib"; then
+if test "x$FUSE_LIB_PATH" != "x-L/lib" -a "x$FUSE_LIB_PATH" != "x-L/lib64"; 
then
 cat <<EOF
 ****************************************************************************
 * WARNING  WARNING  WARNING  WARNING  WARNING  WARNING  WARNING  WARNING   *
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
ntfs-3g-devel mailing list
ntfs-3g-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ntfs-3g-devel

Reply via email to