From: <amc...@us...> - 2006-12-02 03:13:07
|
Revision: 17870 http://svn.sourceforge.net/gaim/?rev=17870&view=rev Author: amc_grim Date: 2006-12-01 19:12:57 -0800 (Fri, 01 Dec 2006) Log Message: ----------- Fix this before it becomes a problem. But basically, if the first call to PKG_CHECK_MODULES is in a conditional block, and that condition is not matched, configure will die on the next call to PKG_CHECK_MODULES. This stops that from happening by forcing the initialization or whatever of pkg-config to always happend. Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-12-01 23:34:40 UTC (rev 17869) +++ trunk/configure.ac 2006-12-02 03:12:57 UTC (rev 17870) @@ -19,6 +19,8 @@ LIBTOOL="$LIBTOOL --silent" AC_PROG_INSTALL AC_PROG_INTLTOOL +PKG_PROG_PKG_CONFIG + GETTEXT_PACKAGE=gaim AC_SUBST(GETTEXT_PACKAGE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |