Closes #2666
git-svn-id: http://svn.osgeo.org/postgis/trunk@12311
b70326c6-7e19-0410-871a-
916f4a2858ee
* Bug Fixes *
+ - #2666, Error out at configure time if no SQL preprocessor can be found
- #2371, Support GEOS versions with more than 1 digit in micro
- #2383, Removed unsafe use of \' from raster warning message
- #2384, Fixed variable datatype in ST_Neighborhood
if test "x$GPP" != "x"; then
SQLPP="${GPP} -C -s \'" dnl Use better string support
else
- SQLPP="${CPP} -traditional-cpp"
+ if test "x${CPP}" != "x"; then
+ SQLPP="${CPP} -traditional-cpp"
+ else
+ AC_MSG_ERROR([Required "cpp" command not found])
+ fi
fi
fi
AC_SUBST([SQLPP])