]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5567] --with-pgsql,--with-mysql are now more robust
authorTomek Mrugalski <tomasz@isc.org>
Mon, 23 Apr 2018 10:22:07 +0000 (11:22 +0100)
committerTomek Mrugalski <tomasz@isc.org>
Mon, 23 Apr 2018 10:22:07 +0000 (11:22 +0100)
configure.ac

index 9787560ba60388e97764fec9a47c6c81f007f00f..56807dbc5c5695fb25b6ca8857db53ebfc9867f1 100644 (file)
@@ -637,6 +637,10 @@ AC_ARG_WITH([benchmark],
 # sets variables CRYPTO_*
 AX_CRYPTO
 
+# List of directories, where tools like mysql_config or pgsql_config will be
+# searched for
+defaultdirs="/usr /usr/local /usr/pkg /opt /opt/local"
+
 # Check for MySql.  The path to the mysql_config program is given with
 # the --with-mysql-config (default to /usr/bin/mysql-config).  By default,
 # the software is not built with MySQL support enabled.
@@ -655,7 +659,13 @@ if test "${deprec_msg}" = "yes" ; then
 fi
 
 if test "${mysql_config}" = "yes" ; then
-    MYSQL_CONFIG="/usr/bin/mysql_config"
+    for d in $defaultdirs
+    do
+        if test -f $d/bin/mysql_config; then
+            MYSQL_CONFIG="$d/bin/mysql_config"
+            break
+        fi
+    done
 elif test "${mysql_config}" != "no" ; then
     MYSQL_CONFIG="${withval}"
 fi
@@ -717,7 +727,13 @@ if test "${deprec_msg}" = "yes" ; then
 fi
 
 if test "${pg_config}" = "yes" ; then
-    PG_CONFIG="/usr/bin/pg_config"
+    for d in $defaultdirs
+    do
+        if test -f $d/bin/pg_config; then
+            PG_CONFIG="$d/bin/pg_config"
+            break
+        fi
+    done
 elif test "${pg_config}" != "no" ; then
     PG_CONFIG="${withval}"
 fi
@@ -832,8 +848,7 @@ elif test "${log4cplus_path}" != "yes" ; then
   LOG4CPLUS_LIBS="-L${log4cplus_path}/lib"
 else
 # If not specified, try some common paths.
-        log4cplusdirs="/usr /usr/local /usr/pkg /opt /opt/local"
-        for d in $log4cplusdirs
+        for d in $defaultdirs
         do
                 if test -f $d/include/log4cplus/logger.h; then
                         LOG4CPLUS_INCLUDES="-I$d/include"