From: Peter Eisentraut Date: Mon, 26 Nov 2007 12:27:03 +0000 (+0000) Subject: Require a specific Autoconf version, instead of a lower bound only. X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=986b30b5f996dc2c74bee480fd37e6137f0e7768;p=users%2Fbernd%2Fpostgres.git Require a specific Autoconf version, instead of a lower bound only. --- diff --git a/configure.in b/configure.in index 858a072a01..a8529d3974 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,7 @@ m4_pattern_forbid(^PGAC_)dnl to catch undefined macros AC_INIT([PostgreSQL], [8.1.10], [pgsql-bugs@postgresql.org]) -AC_PREREQ(2.59) +m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.59], [], [m4_fatal([Autoconf version 2.59 is required])]) AC_COPYRIGHT([Copyright (c) 1996-2005, PostgreSQL Global Development Group]) AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c]) AC_CONFIG_AUX_DIR(config)