summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Menšík <pemensik@redhat.com>2017-07-13 20:32:12 +0200
committerPetr Menšík <pemensik@redhat.com>2017-07-14 16:49:47 +0200
commitf2fb8b7545b7263f64a2ff7c5f9f28d7ff23a8ae (patch)
tree40869448249b6561ada0364a025a28d2991b7912
parente42c700db99f962eb4e4b3a6ab441373809a5fe7 (diff)
downloadbind-f2fb8b7545b7263f64a2ff7c5f9f28d7ff23a8ae.tar.gz
bind-f2fb8b7545b7263f64a2ff7c5f9f28d7ff23a8ae.tar.xz
bind-f2fb8b7545b7263f64a2ff7c5f9f28d7ff23a8ae.zip
Use mysql_config for SDB variant
-rw-r--r--bind-9.11-dlz-mysql.patch93
-rw-r--r--bind.spec9
2 files changed, 100 insertions, 2 deletions
diff --git a/bind-9.11-dlz-mysql.patch b/bind-9.11-dlz-mysql.patch
new file mode 100644
index 0000000..23d0808
--- /dev/null
+++ b/bind-9.11-dlz-mysql.patch
@@ -0,0 +1,93 @@
+diff --git a/contrib/dlz/config.dlz.in b/contrib/dlz/config.dlz.in
+index 9b1464c..d1fe16e 100644
+--- a/contrib/dlz/config.dlz.in
++++ b/contrib/dlz/config.dlz.in
+@@ -135,38 +135,48 @@ 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
+- # User did not specify a path - guess it
+- mysqldirs="/usr /usr/local /usr/local/mysql /usr/pkg"
+- for d in $mysqldirs
+- do
+- if test -f $d/include/mysql/mysql.h
+- then
+- use_dlz_mysql=$d
+- mysql_include=$d/include/mysql
+- if test -d $d/${target_lib}/mysql
++ if test -n "$MYSQL_CONFIG"
++ then
++ mysql_include=`${MYSQL_CONFIG} --include`
++ mysql_lib=`${MYSQL_CONFIG} --libs`
++ use_dlz_mysql="config"
++
++ else
++ # User did not specify a path - guess it
++ mysqldirs="/usr /usr/local /usr/local/mysql /usr/pkg"
++ for d in $mysqldirs
++ do
++ if test -f $d/include/mysql/mysql.h
+ then
+- mysql_lib=$d/${target_lib}/mysql
+- else
+- mysql_lib=$d/lib
+- fi
+- break
+- elif test -f $d/include/mysql.h
+- then
+- use_dlz_mysql=$d
+- mysql_include=$d/include
+- if test -d $d/lib/mysql
++ use_dlz_mysql=$d
++ mysql_include=$d/include/mysql
++ if test -d $d/${target_lib}/mysql
++ then
++ mysql_lib=$d/${target_lib}/mysql
++ else
++ mysql_lib=$d/lib
++ fi
++ break
++ elif test -f $d/include/mysql.h
+ then
+- mysql_lib=$d/lib/mysql
+- else
+- mysql_lib=$d/lib
++ use_dlz_mysql=$d
++ mysql_include=$d/include
++ if test -d $d/lib/mysql
++ then
++ mysql_lib=$d/lib/mysql
++ else
++ mysql_lib=$d/lib
++ fi
++ break
+ fi
+- break
+- fi
+- done
++ done
++ fi
+ elif test "$use_dlz_mysql" != "no"
+ then
+ d=$use_dlz_mysql
+@@ -202,6 +212,14 @@ case "$use_dlz_mysql" in
+ no)
+ AC_MSG_RESULT(no)
+ ;;
++ config)
++ DLZ_ADD_DRIVER(MYSQL, dlz_mysql_driver,
++ [${mysql_include}],
++ [${mysql_lib}])
++
++ AC_MSG_RESULT(
++[using mysql with libs ${mysql_lib} and includes ${mysql_include}])
++ ;;
+ *)
+ DLZ_ADD_DRIVER(MYSQL, dlz_mysql_driver,
+ [-I${mysql_include}],
diff --git a/bind.spec b/bind.spec
index 68ed719..12c3d8e 100644
--- a/bind.spec
+++ b/bind.spec
@@ -25,7 +25,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
Name: bind
License: MPLv2.0
Version: 9.11.1
-Release: 2%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
+Release: 3%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
Epoch: 32
Url: http://www.isc.org/products/BIND/
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -81,6 +81,7 @@ Patch136:bind-9.10-dist-native-pkcs11.patch
Patch137:bind-9.10-use-of-strlcat.patch
Patch140:bind-9.11-rh1410433.patch
Patch141:bind-9.11-rh1236087.patch
+Patch142: bind-9.11-dlz-mysql.patch
# SDB patches
Patch11: bind-9.3.2b2-sdbsrc.patch
@@ -112,7 +113,7 @@ BuildRequires: systemd
BuildRequires: python3-devel
BuildRequires: python3-ply
%if %{SDB}
-BuildRequires: openldap-devel, postgresql-devel, sqlite-devel, mysql-devel
+BuildRequires: openldap-devel, postgresql-devel, sqlite-devel, mariadb-devel
BuildRequires: libdb-devel
%endif
%if %{test}
@@ -322,6 +323,7 @@ This package provides a module which allows commands to be sent to rndc directly
%patch131 -p1 -b .multlib-conflict
%patch140 -p1 -b .rh1410433
%patch141 -p1 -b .rh1236087
+%patch142 -p1 -b .mysql_config
%if %{PKCS11}
cp -r bin/named{,-pkcs11}
@@ -1024,6 +1026,9 @@ rm -rf ${RPM_BUILD_ROOT}
%{python3_sitelib}/isc/__pycache__/*py*
%changelog
+* Thu Jul 13 2017 Petr Menšík <pemensik@redhat.com> - 32:9.11.1-3.P3
+- Use mysql_config for SDB variant, build against mariadb-devel
+
* Mon Jul 10 2017 Petr Menšík <pemensik@redhat.com> - 32:9.11.1-2.P3
- Update to 9.11.1-P3