From 11937ebf7f6ca012338a460d973f0eae380c626a Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Thu, 6 Sep 2012 09:27:33 +0000 Subject: [PATCH] Encode dependency on PROJ >= 4.6.0 git-svn-id: http://svn.osgeo.org/postgis/trunk@10236 b70326c6-7e19-0410-871a-916f4a2858ee --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 5a581ee77..92df88f10 100644 --- a/configure.ac +++ b/configure.ac @@ -677,9 +677,9 @@ CPPFLAGS="$CPPFLAGS_SAVE" AC_SUBST([PROJ_CPPFLAGS]) AC_SUBST([PROJ_LDFLAGS]) -dnl Ensure that we are using PROJ >= 4.5.0 (requires pj_set_searchpath) -if test ! "$POSTGIS_PROJ_VERSION" -ge 45; then - AC_MSG_ERROR([PostGIS requires PROJ >= 4.5.0]) +dnl Ensure that we are using PROJ >= 4.6.0 (requires pj_set_searchpath) +if test ! "$POSTGIS_PROJ_VERSION" -ge 46; then + AC_MSG_ERROR([PostGIS requires PROJ >= 4.6.0]) fi dnl Ensure we can link against libproj -- 2.40.0