From: <amc...@us...> - 2006-10-08 09:47:28
|
Revision: 17449 http://svn.sourceforge.net/gaim/?rev=17449&view=rev Author: amc_grim Date: 2006-10-08 02:47:23 -0700 (Sun, 08 Oct 2006) Log Message: ----------- Patch from Kevin Stange to allow autogen/configure continue without libnm. Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-10-08 08:40:09 UTC (rev 17448) +++ trunk/configure.ac 2006-10-08 09:47:23 UTC (rev 17449) @@ -889,9 +889,14 @@ ]) dnl Check for libnm_glib; if we don't have it, oh well + LIBNM_CFLAGS="" + LIBNM_LIBS="" PKG_CHECK_MODULES(LIBNM, libnm_glib, [ AC_DEFINE(HAVE_LIBNM, 1, [Check to see if we have NetworkManager]) + ], + [ + AC_MSG_RESULT(no) ]) AC_SUBST(LIBNM_CFLAGS) AC_SUBST(LIBNM_LIBS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |