Update configure.ac to require a specific glib version level

http://code.google.com/p/irqbalance/issues/detail?id=19
pointed out that some of the g_list functions we use are only available in glib
version 2.28 and higher.  Update configure.ac to ensure thats available.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
This commit is contained in:
Neil Horman 2011-10-20 10:30:02 -04:00
parent a81cd26ab4
commit 4cdd2040a7

View file

@ -62,7 +62,7 @@ AC_C_CONST
AC_C_INLINE
AM_PROG_CC_C_O
PKG_CHECK_MODULES([GLIB], [glib-2.0])
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.28])
LIBCAP_NG_PATH
AC_OUTPUT(Makefile)