On Jun 23, 2014, at 6:38 PM, Cristian Rodríguez <[email protected]> wrote:
> Of course the package build will have libattr-devel as a build > dependency, since this code include <attr/xattr.h> and will fail > without it.. however...the code is not even linking the attr library so > it will never get used. > > AC_CHECK_LIB([attr], [fgetxattr], > [AC_SUBST([LIBATTR], ["-lattr"]) > AC_DEFINE([HAVE_LIBATTR], [1], > [Define if you have libattr])], > [AC_MSG_ERROR([libattr not found.])]) > > Does not add -lattr to $LIBS and the variable LIBATTR is never > referenced anywhere in the makefiles.. the build succeeds because > libattr duplicates libc functionality…. Then commit f5c16606 is incorrect: configure.ac should be looking for the attr/xattr.h header, not the libattr.so library. A problem for both fedfs-utils 0.9 and 0.10. -- Chuck Lever chuck[dot]lever[at]oracle[dot]com _______________________________________________ fedfs-utils-devel mailing list [email protected] https://oss.oracle.com/mailman/listinfo/fedfs-utils-devel
