|
Lines 256-278
Link Here
|
| 256 |
) |
256 |
) |
| 257 |
AM_CONDITIONAL([ENABLE_GCONF], [test x"$enable_gconf" = x"yes"]) |
257 |
AM_CONDITIONAL([ENABLE_GCONF], [test x"$enable_gconf" = x"yes"]) |
| 258 |
|
258 |
|
| 259 |
if test x"$enable_gconf" = x"yes"; then |
259 |
AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [false]) |
| 260 |
# check gconf |
260 |
enable_gconf="no (disabled, use --enable-gconf to enable)" |
| 261 |
PKG_CHECK_MODULES(GCONF, |
|
|
| 262 |
[gconf-2.0 >= 2.12], |
| 263 |
) |
| 264 |
|
| 265 |
AC_PATH_PROG(GCONFTOOL, gconftool-2, no) |
| 266 |
if test x"$GCONFTOOL" = xno; then |
| 267 |
AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf]) |
| 268 |
fi |
| 269 |
|
| 270 |
AM_GCONF_SOURCE_2 |
| 271 |
# GCONF_SCHEMAS_INSTALL should be set in macro AM_GCONF_SOURCE_2 |
| 272 |
else |
| 273 |
AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [false]) |
| 274 |
enable_gconf="no (disabled, use --enable-gconf to enable)" |
| 275 |
fi |
| 276 |
|
261 |
|
| 277 |
# --enable-memconf option. |
262 |
# --enable-memconf option. |
| 278 |
AC_ARG_ENABLE(memconf, |
263 |
AC_ARG_ENABLE(memconf, |