Fri Sep 29 12:24:35 PDT 2006
- Previous message: [Slony1-commit] By cbbrowne: Improve README
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Per bug #1587 - need for ./configure to bail if PG version < 7.4
Modified Files:
--------------
slony1-engine/config:
acx_libpq.m4 (r1.23 -> r1.24)
-------------- next part --------------
Index: acx_libpq.m4
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/config/acx_libpq.m4,v
retrieving revision 1.23
retrieving revision 1.24
diff -Lconfig/acx_libpq.m4 -Lconfig/acx_libpq.m4 -u -w -r1.23 -r1.24
--- config/acx_libpq.m4
+++ config/acx_libpq.m4
@@ -142,19 +142,19 @@
PG_VERSION_MINOR=`echo $PG_VERSION |\
sed 's/\([[0-9]]*\).\([[0-9]]*\)/\2/'`
if test "$PG_VERSION_MAJOR" = "7"; then
- if test $PG_VERSION_MINOR -gt 2; then
+ if test $PG_VERSION_MINOR -gt 3; then
AC_MSG_RESULT($PG_VERSION)
- AC_DEFINE(PG_VERSION_OK,1,[PostgreSQL 7.3.3 or later])
+ AC_DEFINE(PG_VERSION_OK,1,[PostgreSQL 7.4 or later])
else
AC_MSG_RESULT("error")
AC_MSG_ERROR(Your version of PostgreSQL ($PG_VERSION) is lower
- than the required 7.3.3. Slony-I needs functions included in
+ than the required 7.4. Slony-I needs functions included in
a newer version.)
fi
fi
if test "$PG_VERSION_MAJOR" = "8"; then
AC_MSG_RESULT($PG_VERSION)
- AC_DEFINE(PG_VERSION_OK,1,[PostgreSQL 7.3.3 or later])
+ AC_DEFINE(PG_VERSION_OK,1,[PostgreSQL 7.4 or later])
fi
case ${host_os} in
aix*|*solaris*)
- Previous message: [Slony1-commit] By cbbrowne: Improve README
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list