# HG changeset patch # User Stu Tomlinson # Date 1159715781 0 # Node ID d347b09626eee71101a01c7d02e90737a60d67a6 # Parent 11fd4148f9dab5573a52c42fb8c13747d22108de [gaim-migrate @ 17417] Tidy the configure output if suitable sqlite3 is not found, and ensure cap is not built when not building gtk gaim committer: Tailor Script diff -r 11fd4148f9da -r d347b09626ee configure.ac --- a/configure.ac Sun Oct 01 15:14:05 2006 +0000 +++ b/configure.ac Sun Oct 01 15:16:21 2006 +0000 @@ -344,15 +344,19 @@ dnl # Check for libsqlite3 (for the Contact Availability Prediction plugin) dnl ####################################################################### if test "x$enable_cap" = "xyes"; then - PKG_CHECK_MODULES(SQLITE3, sqlite3 >= 3.3, , enable_cap="no") + PKG_CHECK_MODULES(SQLITE3, sqlite3 >= 3.3,,[ + AC_MSG_RESULT(no) + enable_cap="no" + ]) fi else # GTK + enable_cap=no + enable_gevolution=no + enable_gtkspell=no enable_screensaver=no enable_sm=no enable_startup_notification=no - enable_gtkspell=no - enable_gevolution=no fi # GTK AM_CONDITIONAL(ENABLE_GTK, test "x$enable_gtkui" = "xyes")