Marcus Meissner
932f848950
- Add a versioned dependency when obsoleting packages. - Remove superfluous obsoletes *-64bit in the ifarch ppc64 case; (bnc#437293). - Fix gssapi_krb configure time header detection. - Update root zone (dated Nov 5, 2014). - Update to version 9.10.1 - This release addresses the security flaws described in CVE-2014-3214 and CVE-2014-3859. - Update to version 9.10.0 - Update to version 9.9.6 Cf the bind changes file for all the details of 9.9.6 till 9.10.1. - Remove merged rpz2+rl-9.9.5.patch and obsoleted rpz2+rl-9.9.5.patch - Update baselibs.conf (added libirs and library interface version updates). OBS-URL: https://build.opensuse.org/request/show/264083 OBS-URL: https://build.opensuse.org/package/show/network/bind?expand=0&rev=153
46 lines
1.1 KiB
Diff
46 lines
1.1 KiB
Diff
Index: bin/named/Makefile.in
|
|
===================================================================
|
|
--- bin/named/Makefile.in.orig 2014-01-23 18:42:24.479609343 +0100
|
|
+++ bin/named/Makefile.in 2014-01-24 10:11:54.234471728 +0100
|
|
@@ -34,9 +34,9 @@
|
|
#
|
|
# Add database drivers here.
|
|
#
|
|
-DBDRIVER_OBJS =
|
|
-DBDRIVER_SRCS =
|
|
-DBDRIVER_INCLUDES =
|
|
+DBDRIVER_OBJS = ldapdb.@O@
|
|
+DBDRIVER_SRCS = ldapdb.c
|
|
+DBDRIVER_INCLUDES = -DLDAP_DEPRECATED
|
|
DBDRIVER_LIBS =
|
|
|
|
DLZ_DRIVER_DIR = ${top_srcdir}/contrib/dlz/drivers
|
|
Index: bin/named/main.c
|
|
===================================================================
|
|
--- bin/named/main.c.orig 2013-12-20 01:28:28.000000000 +0100
|
|
+++ bin/named/main.c 2014-01-23 18:45:19.059680008 +0100
|
|
@@ -85,6 +85,7 @@
|
|
* Include header files for database drivers here.
|
|
*/
|
|
/* #include "xxdb.h" */
|
|
+#include <ldapdb.h>
|
|
|
|
#ifdef CONTRIB_DLZ
|
|
/*
|
|
@@ -1016,6 +1017,7 @@
|
|
* Add calls to register sdb drivers here.
|
|
*/
|
|
/* xxdb_init(); */
|
|
+ ldapdb_init();
|
|
|
|
#ifdef ISC_DLZ_DLOPEN
|
|
/*
|
|
@@ -1056,6 +1058,7 @@
|
|
* Add calls to unregister sdb drivers here.
|
|
*/
|
|
/* xxdb_clear(); */
|
|
+ ldapdb_clear();
|
|
|
|
#ifdef CONTRIB_DLZ
|
|
/*
|