mirror of
https://github.com/samba-team/samba.git
synced 2025-11-13 08:23:49 +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)
21 lines
573 B
Plaintext
21 lines
573 B
Plaintext
# Registry backends
|
|
|
|
if test t$BLDSHARED = ttrue; then
|
|
LIBWINREG_SHARED=bin/libwinregistry.$SHLIBEXT
|
|
fi
|
|
LIBWINREG=libwinregistry
|
|
|
|
AC_CONFIG_FILES(lib/registry/winregistry.pc)
|
|
|
|
SMB_MODULE_DEFAULT(registry_gconf, NOT)
|
|
|
|
SMB_EXT_LIB_FROM_PKGCONFIG(gconf, gconf-2.0)
|
|
|
|
if test t$SMB_EXT_LIB_ENABLE_gconf = tYES; then
|
|
SMB_MODULE_DEFAULT(registry_gconf, STATIC)
|
|
fi
|
|
|
|
if test x"$experimental" = x"yes"; then
|
|
SMB_LIBRARY_ENABLE(libwinregistry, YES)
|
|
fi
|