summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2013-03-25 16:33:49 -0400
committerJan Kara <jack@suse.cz>2013-03-26 17:13:33 +0100
commit0d0a674d245b81b6265c3ed0b5f2a08899aa8d2b (patch)
tree2c03972cf18006958b9a0b47e8d2813dd595a8c4
parent97fad5f32bfe24b3a3ce8b3923b27099b746de06 (diff)
downloadquota-tools-0d0a674d245b81b6265c3ed0b5f2a08899aa8d2b.tar.gz
Add AC_PREREQ to configure.in
Debian will automatically switch between autoconf version 2.13 and modern autoconf based on the version number in the AC_PREREQ statement. Without the AC_PREREQ, debian's autoconf driver script will try to use autoconf 2.13, and the configure.in file uses autoconf macros which were introduced in the autoconf 2.50. So add an AC_PREREQ statement to make the right thing happen automatically. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r--configure.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 00f1285..88723f6 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(quota.c)
+AC_PREREQ(2.50)
AC_CONFIG_HEADERS([config.h])
dnl Checks for programs.