Committer : entrope
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Commit time: 2004-10-29 02:37:37 UTC
Modified files:
configure.in ChangeLog
Log message:
Depend on autoconf 2.50 since we use new macros like AC_LINK_IFELSE
and AC_LANG_PROGRAM.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.500 ircu2.10/ChangeLog:1.501
--- ircu2.10/ChangeLog:1.500 Fri Oct 22 19:22:09 2004
+++ ircu2.10/ChangeLog Thu Oct 28 19:37:26 2004
@@ -1,3 +1,8 @@
+2004-10-28 Michael Poole <[EMAIL PROTECTED]>
+
+ * configure.in (AC_PREREQ): Depend on autoconf 2.50 since we use
+ new macros like AC_LINK_IFELSE and AC_LANG_PROGRAM.
+
2004-10-22 Michael Poole <[EMAIL PROTECTED]>
* ircd/m_invite.c (m_invite, ms_invite): Fix INVITE forwarding
Index: ircu2.10/configure.in
diff -u ircu2.10/configure.in:1.21 ircu2.10/configure.in:1.22
--- ircu2.10/configure.in:1.21 Sun Sep 19 05:19:29 2004
+++ ircu2.10/configure.in Thu Oct 28 19:37:26 2004
@@ -19,7 +19,7 @@
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
dnl
-dnl $Id: configure.in,v 1.21 2004/09/19 12:19:29 shad0w Exp $
+dnl $Id: configure.in,v 1.22 2004/10/29 02:37:26 entrope Exp $
dnl Make sure we are in the correct directory (someone could have run
dnl 'configure' with a wrong '--srcdir').
@@ -41,8 +41,8 @@
dnl Define the input and output configuration header file.
AC_CONFIG_HEADER([config.h])
-dnl Demand at least version 2.13 of autoconf
-AC_PREREQ(2.13)
+dnl Demand at least version 2.50 of autoconf
+AC_PREREQ(2.50)
dnl Find out what type of system we are
AC_CANONICAL_HOST
----------------------- End of diff -----------------------