mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
r3753: Have some modules default to "NOT" and enable them again when
their dependencies are found
This commit is contained in:
parent
f28638628a
commit
8e7e98ae5f
@ -1,7 +1,9 @@
|
||||
SMB_MODULE_DEFAULT(libldb_ldap,NOT)
|
||||
if test x"$with_ldap_support" = x"yes"; then
|
||||
SMB_MODULE_DEFAULT(libldb_ldap,STATIC)
|
||||
fi
|
||||
|
||||
SMB_LIBRARY_ENABLE(libldb,NO)
|
||||
if test x"$experimental" = x"yes"; then
|
||||
SMB_LIBRARY_ENABLE(libldb,YES)
|
||||
fi
|
||||
|
@ -2,6 +2,7 @@
|
||||
dnl test for ipv6 using the gethostbyname2() function. That should be sufficient
|
||||
dnl for now
|
||||
AC_CHECK_FUNCS(gethostbyname2, have_ipv6=true, have_ipv6=false)
|
||||
SMB_MODULE_DEFAULT(socket_ipv6, NOT)
|
||||
if $have_ipv6 = true; then
|
||||
SMB_MODULE_DEFAULT(socket_ipv6, STATIC)
|
||||
AC_DEFINE(HAVE_SOCKET_IPV6,1,[Whether the system has ipv6 support])
|
||||
|
@ -1,5 +1,7 @@
|
||||
dnl # Server process model subsystem
|
||||
|
||||
SMB_MODULE_DEFAULT(process_model_thread,NOT)
|
||||
|
||||
#################################################
|
||||
# check for pthread support
|
||||
AC_MSG_CHECKING(whether to use pthreads)
|
||||
|
Loading…
Reference in New Issue
Block a user