From: Michal Nowikowski Date: Tue, 29 Jan 2019 09:42:39 +0000 (+0100) Subject: improved error trace in case ./configure cannot find mysql dependencies X-Git-Tag: 429-Updated-StampedValue-to-support-reals_base~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8f9c77f84d0b499f106a88f5d4e9a694672c6d3;p=thirdparty%2Fkea.git improved error trace in case ./configure cannot find mysql dependencies --- diff --git a/configure.ac b/configure.ac index d9497eb0d5..79666ce6cd 100644 --- a/configure.ac +++ b/configure.ac @@ -695,7 +695,7 @@ fi if test "$MYSQL_CONFIG" != "" ; then if test -d "$MYSQL_CONFIG" -o ! -x "$MYSQL_CONFIG" ; then - AC_MSG_ERROR([--with-mysql should point to a mysql_config program]) + AC_MSG_ERROR([MySQL dependencies cannot be found. Please install MySQL libraries or point --with-mysql to mysql_config program if it is located in non-default directory, eg. --with-mysql=/opt/mysql/bin/mysql_config.]) fi MYSQL_CPPFLAGS=`$MYSQL_CONFIG --cflags`