From 8361ca82ae89ce8b038a4faa8274b2b88cfe81a6 Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Sat, 11 Oct 2008 16:19:59 +0000 Subject: Use gconf for the profile --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ec6621c..181a085 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip]) AM_PATH_PYTHON -PKG_CHECK_MODULES(SHELL, pygtk-2.0 gtk+-2.0) +PKG_CHECK_MODULES(SHELL, pygtk-2.0 gtk+-2.0 gconf-2.0) # Setup GETTEXT # @@ -29,6 +29,17 @@ AC_ARG_ENABLE(update-mimedb, enable_update_mimedb=yes) AM_CONDITIONAL(ENABLE_UPDATE_MIMEDB, test x$enable_update_mimedb = xyes) +# Verify that gconftool is installed +# +AC_PATH_PROG(GCONFTOOL, gconftool-2, no) + +if test "$GCONFTOOL" = no; then + AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf]) +fi + +AM_GCONF_SOURCE_2 + + AC_CONFIG_FILES([ bin/sugar src/jarabe/config.py @@ -49,6 +60,7 @@ extensions/cpsection/language/Makefile extensions/cpsection/network/Makefile extensions/cpsection/power/Makefile extensions/deviceicon/Makefile +schemas/Makefile src/Makefile src/jarabe/Makefile src/jarabe/controlpanel/Makefile -- cgit v0.9.1