From: Bborie Park Date: Sat, 8 Sep 2012 01:18:04 +0000 (+0000) Subject: Minor message tweaks regarding GDAL/OGR detection X-Git-Tag: 2.1.0beta2~664 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db1560de81497dbfc1e1c58e69ecfa8d7e69d9d8;p=postgis Minor message tweaks regarding GDAL/OGR detection git-svn-id: http://svn.osgeo.org/postgis/trunk@10259 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/configure.ac b/configure.ac index 322e50e35..ce0ab76bc 100644 --- a/configure.ac +++ b/configure.ac @@ -1010,15 +1010,15 @@ if test "x$with_raster" != "xno"; then AC_CHECK_HEADERS( [gdal.h ogr_api.h cpl_conv.h], [], - [AC_MSG_ERROR([could not find headers include related to gdal])]) + [AC_MSG_ERROR([could not find GDAL headers])]) dnl Ensure we can link against gdal - AC_SEARCH_LIBS([GDALAllRegister], [gdal], [], [AC_MSG_ERROR([could not find gdal])], []) + AC_SEARCH_LIBS([GDALAllRegister], [gdal], [], [AC_MSG_ERROR([could not find GDAL])], []) LIBS="$LIBGDAL_LDFLAGS" dnl Ensure we can link against ogr - AC_SEARCH_LIBS([OGRRegisterAll], [gdal], [], [AC_MSG_ERROR([could not find gdal])], []) + AC_SEARCH_LIBS([OGRRegisterAll], [gdal], [], [AC_MSG_ERROR([could not find OGR])], []) LIBS="$LIBGDAL_LDFLAGS"