mirror of
https://github.com/samba-team/samba.git
synced 2025-03-09 08:58:35 +03:00
25 lines
701 B
Plaintext
25 lines
701 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)
|
|
|
|
AC_ARG_ENABLE(reg-gconf,
|
|
[ --enable-reg-gconf Enable support for GConf registry backend],
|
|
[
|
|
if test t$enable = tyes && 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
|