mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 20:40:00 -04:00
[v9_11] Only look for mysql_config if --with-dlz-mysql is used [RT #46647]
(cherry picked from commit a80dc538bd)
This commit is contained in:
parent
1f4a3c7088
commit
8e0ef3ecf7
1 changed files with 1 additions and 2 deletions
|
|
@ -132,12 +132,11 @@ AC_ARG_WITH(dlz_mysql,
|
|||
(Required to use MySQL with DLZ)]),
|
||||
use_dlz_mysql="$withval", use_dlz_mysql="no")
|
||||
|
||||
AC_CHECK_PROGS(MYSQL_CONFIG, mysql_config)
|
||||
|
||||
mysql_include=""
|
||||
mysql_lib=""
|
||||
if test "$use_dlz_mysql" = "yes"
|
||||
then
|
||||
AC_CHECK_PROGS(MYSQL_CONFIG, mysql_config)
|
||||
if test -n "$MYSQL_CONFIG"
|
||||
then
|
||||
mysql_include=`${MYSQL_CONFIG} --include`
|
||||
|
|
|
|||
Loading…
Reference in a new issue