blob: af885825ee9be97927f30a9db0831aa696d1d456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Registry backends
SMB_ENABLE(registry_gconf, NO)
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; then
SMB_ENABLE(registry_gconf, $SMB_EXT_LIB_ENABLE_gconf)
fi
])
|