From: Michal Nowikowski Date: Tue, 29 Jan 2019 09:54:20 +0000 (+0100) Subject: improved error trace in case ./configure cannot find pgsql dependencies X-Git-Tag: 429-Updated-StampedValue-to-support-reals_base~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7b229671269f629e7f1e212083f472e5f0644c6;p=thirdparty%2Fkea.git improved error trace in case ./configure cannot find pgsql dependencies --- diff --git a/configure.ac b/configure.ac index 72c0cbb593..73e1577ba7 100644 --- a/configure.ac +++ b/configure.ac @@ -764,7 +764,7 @@ fi if test "$PG_CONFIG" != "" ; then if test -d "$PG_CONFIG" -o ! -x "$PG_CONFIG" ; then - AC_MSG_ERROR([--with-pgsql should point to a pg_config program]) + AC_MSG_ERROR([PostgreSQL dependencies cannot be found. Please install PostgreSQL libraries or point --with-pgsql to pg_config program if it is located in non-default directory, eg. --with-pgsql=/opt/pgsql/bin/pg_config.]) fi PGSQL_CPPFLAGS=`$PG_CONFIG --cppflags`