summaryrefslogtreecommitdiff
path: root/source4/torture/libnetapi
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-06-04 11:13:05 +1000
committerAndrew Bartlett <abartlet@samba.org>2009-06-04 11:13:05 +1000
commitbef665baadebe7ad8a9417dfccb5f210d3f01ae0 (patch)
tree69758f5d269d8458be0a76f16b6049b44031ad06 /source4/torture/libnetapi
parent0daf9a042c76619f4be8ce38b6ee1aba6a1079a4 (diff)
downloadsamba-bef665baadebe7ad8a9417dfccb5f210d3f01ae0.tar.gz
s4:torture Make Samba4 build on hosts with an older libnetapi
For example, Samba4 would not build (for the last week) on Fedora 10, with samba-common 3.2.11 installed. Andrew Bartlett
Diffstat (limited to 'source4/torture/libnetapi')
-rw-r--r--source4/torture/libnetapi/config.m47
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/torture/libnetapi/config.m4 b/source4/torture/libnetapi/config.m4
index fadef6981cd..402f1123a54 100644
--- a/source4/torture/libnetapi/config.m4
+++ b/source4/torture/libnetapi/config.m4
@@ -20,7 +20,12 @@ SMB_ENABLE(TORTURE_LIBNETAPI,NO)
if test x$use_netapi != xno; then
AC_CHECK_HEADERS(netapi.h)
AC_CHECK_LIB_EXT(netapi, NETAPI_LIBS, libnetapi_init)
- if test x"$ac_cv_header_netapi_h" = x"yes" -a x"$ac_cv_lib_ext_netapi_libnetapi_init" = x"yes";then
+ AC_CHECK_LIB_EXT(netapi, NETAPI_LIBS, NetUserModalsGet)
+ AC_CHECK_LIB_EXT(netapi, NETAPI_LIBS, NetUserGetGroups)
+ AC_CHECK_LIB_EXT(netapi, NETAPI_LIBS, NetUserGetInfo)
+ AC_CHECK_LIB_EXT(netapi, NETAPI_LIBS, NetUserSetInfo)
+ if test x"$ac_cv_header_netapi_h" = x"yes" -a x"$ac_cv_lib_ext_netapi_libnetapi_init" = x"yes" -a x"$ac_cv_lib_ext_netapi_NetUserModalsGet" = x"yes" -a x"$ac_cv_lib_ext_netapi_NetUserGetGroups" = x"yes" -a x"$ac_cv_lib_ext_netapi_NetUserGetInfo" = x"yes" -a x"$ac_cv_lib_ext_netapi_NetUserSetInfo" = x"yes";then
+ AC_DEFINE(ENABLE_LIBNETAPI,1,[Whether we have libnetapi on the host system])
SMB_ENABLE(NETAPI,YES)
SMB_ENABLE(TORTURE_LIBNETAPI,YES)
else