]> jfr.im git - irc/xchat.git/commitdiff
Add AC_USE_SYSTEM_EXTENSIONS since the extensions it enables are being used
authorlsitu <redacted>
Sat, 14 Jul 2012 17:45:12 +0000 (17:45 +0000)
committerlsitu <redacted>
Sat, 14 Jul 2012 17:45:12 +0000 (17:45 +0000)
and newer autoconf requires this declaration.
Bump the requirement to autoconf 2.60 which is when AC_USE_SYSTEM_EXTENSIONS
was added.
Bump the glib requirement to 2.12 since it's required by gtk 2.10.

git-svn-id: svn://svn.code.sf.net/p/xchat/svn@1520 893a96be-7f27-4fdf-9d1e-6aeec9d3cce1

configure.in

index 620268d2822c3c1e779fb72dcf9d52d45505240c..b97536566710727d28dc98fae6d95d021d6688ed 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT([XChat],[2.8.8],[http://www.xchat.org/],[xchat])
 
-AC_PREREQ([2.59])
+AC_PREREQ([2.60])
 AC_COPYRIGHT([Copyright (C) 1998-2010 Peter Zelezny])
 
 AC_CONFIG_HEADERS([config.h])
@@ -10,6 +10,7 @@ AC_CONFIG_SRCDIR([configure.in])
 
 AM_INIT_AUTOMAKE([1.9 dist-bzip2 subdir-objects no-define])
 
+AC_USE_SYSTEM_EXTENSIONS
 AM_MAINTAINER_MODE
 AC_PROG_CC
 AM_PROG_CC_C_O
@@ -157,7 +158,7 @@ dnl *********************************************************************
 dnl ** GLIB *************************************************************
 dnl *********************************************************************
 
-AM_PATH_GLIB_2_0(2.0.3, glib=yes, glib=no)
+AM_PATH_GLIB_2_0(2.12.0, glib=yes, glib=no)
 if test "$glib" = no; then
        AC_MSG_ERROR("Cannot find glib")
 fi