From: <rl...@us...> - 2006-10-22 05:05:21
|
Revision: 17561 http://svn.sourceforge.net/gaim/?rev=17561&view=rev Author: rlaager Date: 2006-10-21 22:05:16 -0700 (Sat, 21 Oct 2006) Log Message: ----------- SF Patch #1581414 from Ari Pollak "The gg plugin doesn't link against libgg anymore when it's detected using pkg-config. This should be fixable by changing back this line in configure.ac: PKG_CHECK_MODULES(LIBGADU, libgadu, [ to this: PKG_CHECK_MODULES(GADU, libgadu, [" This was my mistake. Sorry. Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-10-21 23:36:44 UTC (rev 17560) +++ trunk/configure.ac 2006-10-22 05:05:16 UTC (rev 17561) @@ -605,7 +605,7 @@ gadu_manual_check="no" fi if test "x$gadu_manual_check" = "xno"; then - PKG_CHECK_MODULES(LIBGADU, libgadu, [ + PKG_CHECK_MODULES(GADU, libgadu, [ gadu_includes="yes" gadu_libs="yes" ], [ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |