From: <nos...@us...> - 2006-10-01 15:16:26
|
Revision: 17417 http://svn.sourceforge.net/gaim/?rev=17417&view=rev Author: nosnilmot Date: 2006-10-01 08:16:21 -0700 (Sun, 01 Oct 2006) Log Message: ----------- Tidy the configure output if suitable sqlite3 is not found, and ensure cap is not built when not building gtk gaim Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-10-01 15:14:05 UTC (rev 17416) +++ trunk/configure.ac 2006-10-01 15:16:21 UTC (rev 17417) @@ -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") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |