1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
###############################
# start SMB_EXT_LIB_NETAPI
# check for netapi.h and -lnetapi
use_netapi=auto
AC_ARG_ENABLE(netapi,
AS_HELP_STRING([--enable-netapi],[Turn on netapi support (default=auto)]),
[if test x$enable_netapi = xno; then
use_netapi=no
fi])
#if test x$use_netapi = xauto && pkg-config --exists netapi; then
# SMB_EXT_LIB_FROM_PKGCONFIG(NETAPI, netapi < 0.1,
# [use_netapi=yes],
# [use_netapi=no])
#fi
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)
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
if test x$use_netapi != xauto; then
AC_MSG_ERROR([--enable-netapi: libnetapi not found])
fi
fi
SMB_EXT_LIB(NETAPI, $NETAPI_LIBS)
fi
|