diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-06-03 09:08:55 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-06-03 03:56:05 +0200 |
commit | 5bf6971c384f5480d008b69c54122edb59a8fa1f (patch) | |
tree | 44b958caa033d47ed2050eb2e8791a38cacef03f /source3 | |
parent | 33eb88e6deeba554ff2d8a862ea67aa35ffafae9 (diff) | |
download | samba-5bf6971c384f5480d008b69c54122edb59a8fa1f.tar.gz samba-5bf6971c384f5480d008b69c54122edb59a8fa1f.tar.bz2 samba-5bf6971c384f5480d008b69c54122edb59a8fa1f.zip |
libreplace: Link libreplace against attr when required
The autoconf Samba build will return to over-linking with -lattr on
systems with both the XFS compat API and native xattrs.
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Sun Jun 3 03:56:05 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 37f37f6030..153c8874d2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -586,7 +586,7 @@ LIBREPLACE_DIR=`echo ${libreplacedir} | sed -e "s;${srcdir};;" -e "s;^/;;"` LIBREPLACE_OBJS="${LIBREPLACEOBJ}" AC_SUBST(LIBREPLACE_OBJS) -LIBREPLACE_LIBS="${LIBREPLACE_NETWORK_LIBS}" +LIBREPLACE_LIBS="${LIBREPLACE_NETWORK_LIBS} ${LIBREPLACE_FILESYS_LIBS}" AC_SUBST(LIBREPLACE_LIBS) |