* [PATCH] Add AC_PREREQ to configure.in
@ 2013-03-25 20:33 Theodore Ts'o
2013-03-26 16:14 ` Jan Kara
0 siblings, 1 reply; 2+ messages in thread
From: Theodore Ts'o @ 2013-03-25 20:33 UTC (permalink / raw)
To: jack, ppisar; +Cc: linux-fsdevel, Theodore Ts'o
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>
---
configure.in | 1 +
1 file changed, 1 insertion(+)
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.
--
1.7.12.rc0.22.gcdd159b
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Add AC_PREREQ to configure.in
2013-03-25 20:33 [PATCH] Add AC_PREREQ to configure.in Theodore Ts'o
@ 2013-03-26 16:14 ` Jan Kara
0 siblings, 0 replies; 2+ messages in thread
From: Jan Kara @ 2013-03-26 16:14 UTC (permalink / raw)
To: Theodore Ts'o; +Cc: jack, ppisar, linux-fsdevel
On Mon 25-03-13 16:33:49, Ted Tso wrote:
> 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.
Thanks. Merged into quota-tools repository.
Honza
>
> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
> ---
> configure.in | 1 +
> 1 file changed, 1 insertion(+)
>
> 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.
> --
> 1.7.12.rc0.22.gcdd159b
>
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-26 16:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-25 20:33 [PATCH] Add AC_PREREQ to configure.in Theodore Ts'o
2013-03-26 16:14 ` Jan Kara
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).