mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
c6a3ee8bab
(This used to be commit 6596f619c0
)
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
|