mirror of
https://github.com/samba-team/samba.git
synced 2025-06-25 19:17:10 +03:00
- Use .mk files directly (no need for a SMB_*_MK() macro when adding a new SUBSYSTEM, MODULE or BINARY). This allows addition of new modules and subsystems without running configure - Add support for generating .dot files with the Samba4 dependency tree (as used by the graphviz and springgraph utilities) (This used to be commit 64826da834e26ee0488674e27a0eae36491ee179)
22 lines
563 B
Plaintext
22 lines
563 B
Plaintext
|
|
if test x"$experimental" = x"yes"; then
|
|
SMB_LIBRARY_ENABLE(libtdb,YES)
|
|
fi
|
|
|
|
###############################
|
|
# start SMB_EXT_LIB_GDBM
|
|
# check for gdbm.h and -lgdbm
|
|
AC_CHECK_HEADERS(gdbm.h)
|
|
AC_CHECK_LIB_EXT(gdbm, GDBM_LIBS, gdbm_open)
|
|
if test x"$ac_cv_header_gdbm_h" = x"yes" -a x"$ac_cv_lib_ext_gdbm_gdbm_open" = x"yes";then
|
|
SMB_EXT_LIB_ENABLE(GDBM,YES)
|
|
fi
|
|
SMB_EXT_LIB(GDBM, $GDBM_LIBS)
|
|
# end SMB_EXT_LIB_GDBM
|
|
###############################
|
|
|
|
SMB_BINARY_ENABLE(tdbtest, NO)
|
|
if test x"$SMB_EXT_LIB_ENABLE_GDBM" = x"YES"; then
|
|
SMB_BINARY_ENABLE(tdbtest, YES)
|
|
fi
|