This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/xawtv3.git tree:
Subject: Add detection for glib2 Author: Mauro Carvalho Chehab <[email protected]> Date: Wed Feb 2 15:59:41 2011 -0200 Based on a Debian patch. First, try to use the libraries pointed by glib2. If that fails, use the old way. Signed-off-by: Mauro Carvalho Chehab <[email protected]> configure.ac | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/xawtv3.git?a=commitdiff;h=cf6cbb4e53fde3611f684a96dbff66f9b618c778 diff --git a/configure.ac b/configure.ac index 3815215..ee2c80b 100644 --- a/configure.ac +++ b/configure.ac @@ -240,7 +240,10 @@ else echo "*** DV disabled" fi -dashlglib=$(glib-config --libs 2>/dev/null) +dashlglib=$(pkg-config glib-2.0 --libs 2>/dev/null) +if test "$dashlglib" = ""; then + dashlglib=$(glib-config --libs 2>/dev/null) +fi if test "$enable_quicktime" != "no"; then AC_CHECK_LIB(quicktime, lqt_query_registry, FOUND_LQT="yes"; AC_DEFINE(HAVE_LIBQUICKTIME,1,"have libquicktime"),, _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
