Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
b7c85ff8
Commit
b7c85ff8
authored
Apr 23, 2018
by
Tomek Mrugalski
🛰
Browse files
[5567] --with-pgsql,--with-mysql are now more robust
parent
722abaec
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
b7c85ff8
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment