There was a copy paste error in the Makefile of the mysql dlz modules,
instead of setting the MYSQL_LIBS, LDAP_LIBS where set. This caused
the mysql bindings not to be generated.
libdir = $(prefix)/lib/bind9
CFLAGS=-fPIC -g -I../include $(shell mysql_config --cflags)
-LDAP_LIBS=$(shell mysql_config --libs)
+MYSQL_LIBS=$(shell mysql_config --libs)
all: dlz_mysql_dynamic.so
libdir = $(prefix)/lib/bind9
CFLAGS=-fPIC -g -I../include $(shell mysql_config --cflags)
-LDAP_LIBS=$(shell mysql_config --libs)
+MYSQL_LIBS=$(shell mysql_config --libs)
all: dlz_mysqldyn_mod.so