Merge pull request #183 from evanmiller/configure-error

Use AC_MSG_ERROR instead of echo/exit
This commit is contained in:
Evan Miller
2020-10-18 10:18:57 -04:00
committed by GitHub

View File

@@ -181,9 +181,7 @@ fi
if test "x$HAVE_ODBC" = "xtrue"; then
if test "x$sql" != "xtrue" ; then
echo
echo ODBC requires flex and bison for the SQL engine
exit 1
AC_MSG_ERROR([ODBC requires flex and bison for the SQL engine])
fi
AC_SUBST(ODBC_CFLAGS)