]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
added AC_PREREQ(2.50) to prevent autoconf mistakes
authorDaniel Stenberg <daniel@haxx.se>
Tue, 23 Oct 2001 07:54:16 +0000 (07:54 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 23 Oct 2001 07:54:16 +0000 (07:54 +0000)
configure.in

index dd80c394ee16d5a3df6b68799d86351a80382677..abc91383a1ae68edac44e01d32dc778920b9ff92 100644 (file)
@@ -1,9 +1,16 @@
 dnl $Id$
 dnl Process this file with autoconf to produce a configure script.
+
+dnl Ensure that this file is processed with autoconf 2.50 or newer
+dnl Don't even think about removing this check!
+AC_PREREQ(2.50)
+
+dnl First some basic init macros
 AC_INIT
 AC_CONFIG_SRCDIR([lib/urldata.h])
 AM_CONFIG_HEADER(config.h src/config.h)
 
+dnl figure out the libcurl version
 VERSION=`sed -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' ${srcdir}/include/curl/curl.h`
 AM_INIT_AUTOMAKE(curl,$VERSION)