diff options
author | Günther Deschner <gd@samba.org> | 2009-10-14 17:42:19 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-10-14 17:45:59 +0200 |
commit | 67b544ba968d08cd861fc2d6d5b8a0881880b0aa (patch) | |
tree | 757ad1a435f11800e4149322142018327f90257d | |
parent | 6618a062a19660a718074f6e6155339451b7a5b6 (diff) | |
download | samba-67b544ba968d08cd861fc2d6d5b8a0881880b0aa.tar.gz samba-67b544ba968d08cd861fc2d6d5b8a0881880b0aa.tar.bz2 samba-67b544ba968d08cd861fc2d6d5b8a0881880b0aa.zip |
s3-build: we need to have talloc 2.0.1 when building with external talloc.
2.0.0 did not got the exports right.
This and the 2.0.1 talloc fixes resolve bug #6808.
Guenther
-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 0224737cb5..9d93ec7d99 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4806,7 +4806,7 @@ AC_ARG_ENABLE(external_libtalloc, [AS_HELP_STRING([--enable-external-libtalloc], if test "x$enable_external_libtalloc" != xno then - PKG_CHECK_MODULES(LIBTALLOC, talloc >= 2.0.0, + PKG_CHECK_MODULES(LIBTALLOC, talloc >= 2.0.1, [ enable_external_libtalloc=yes ], [ if test x$enable_external_libtalloc = xyes; then AC_MSG_ERROR([Unable to find libtalloc]) |