diff options
author | Bruce Momjian | 2007-12-31 17:27:57 +0000 |
---|---|---|
committer | Bruce Momjian | 2007-12-31 17:27:57 +0000 |
commit | 89d4770c25b03277d53484da971cbc8e6a21d351 (patch) | |
tree | 1c390a8bf92a48bdf527f67794e885adaf840b67 | |
parent | 11b709714cd85adbea4000c0819d0fc7a726a0bb (diff) |
Provide a more helpful error message when there is an autoconf version
mismatch; backpatch.
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b63c38b2846..10c08767736 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Header: /cvsroot/pgsql/configure.in,v 1.301.2.27 2007/11/26 12:09:58 petere Exp $ +dnl $Header: /cvsroot/pgsql/configure.in,v 1.301.2.28 2007/12/31 17:27:57 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -26,7 +26,10 @@ m4_undefine([infodir]) m4_undefine([info]) AC_SUBST(docdir) -m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.53], [], [m4_fatal([Autoconf version 2.53 is required])]) +m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.53], [], [m4_fatal([Autoconf version 2.59 is required. +Untested combinations of 'autoconf' and PostgreSQL versions are not +recommended. You can remove the check from 'configure.in' but it is then +your responsibility whether the result works or not.])]) AC_COPYRIGHT([Copyright 2004 PostgreSQL Global Development Group]) AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c]) AC_CONFIG_AUX_DIR(config) |