From 9db701caebdb9bb6af0e01172893d55611854af3 Mon Sep 17 00:00:00 2001 Message-Id: <9db701caebdb9bb6af0e01172893d55611854af3.1714795569.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 23 Dec 2008 00:54:12 +0000 Subject: [PATCH] configure.ac: Use AM_PATH_GLIB_2_0. Organization: Straylight/Edgeware From: Mark Wooding Duh. I'm impressed it worked, really. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0eeb1ec5..c285d619 100644 --- a/configure.ac +++ b/configure.ac @@ -227,7 +227,7 @@ esac dnl If we're still interested, find Glib. case "$haveshark" in - yes) AM_PATH_GLIB([1.2.0], [], haveshark=false, [gmodule]) ;; + yes) AM_PATH_GLIB_2_0([2.4.0], [], [haveshark=false], [gmodule]) ;; esac dnl Find the include directory. This would be much easier if they just -- [mdw]