Build extensions even w/out topology, and even w/out xsltproc if
comments are already built.
git-svn-id: http://svn.osgeo.org/postgis/trunk@9569
b70326c6-7e19-0410-871a-
916f4a2858ee
EXTENSIONS=""
if test $POSTGIS_PGSQL_VERSION -ge 91; then
- if test ! "x$XSLTPROC" = "x"; then
+ if test \
+ "x$XSLTPROC" != "x" -o \
+ -e doc/postgis_comments.sql -a \
+ -e doc/raster_comments.sql;
+ then
if test "x$RASTER" = "xraster"; then
- if test "x$TOPOLOGY" = "xtopology"; then
AC_MSG_RESULT([enabling extensions for PostgreSQL 9.1...])
EXTENSIONS=extensions
AC_SUBST([EXTENSIONS])
- fi
fi
fi
fi