1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

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
This commit is contained in:
Andrew Bartlett 2009-06-04 11:13:05 +10:00
parent 0daf9a042c
commit bef665baad
2 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -45,7 +45,7 @@ bool torture_register_suite(struct torture_suite *suite)
return torture_suite_add_suite(torture_root, suite);
}
#ifndef HAVE_NETAPI_H
#ifndef ENABLE_LIBNETAPI
NTSTATUS torture_libnetapi_init(void)
{
return NT_STATUS_OK;
@ -63,9 +63,7 @@ _PUBLIC_ int torture_init(void)
extern NTSTATUS torture_rpc_init(void);
extern NTSTATUS torture_smb2_init(void);
extern NTSTATUS torture_net_init(void);
#ifdef HAVE_NETAPI_H
extern NTSTATUS torture_libnetapi_init(void);
#endif
extern NTSTATUS torture_raw_init(void);
extern NTSTATUS torture_unix_init(void);
extern NTSTATUS torture_winbind_init(void);