From: Matthijs Mekking Date: Fri, 5 Aug 2022 09:43:00 +0000 (+0200) Subject: Fix mysql bindings X-Git-Tag: v9.19.5~50^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b47e41db742321d29171cc3b5844b9ad235cb0d8;p=thirdparty%2Fbind9.git Fix mysql bindings 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. --- diff --git a/contrib/dlz/modules/mysql/Makefile b/contrib/dlz/modules/mysql/Makefile index 017de92c6c1..606dcefe6cf 100644 --- a/contrib/dlz/modules/mysql/Makefile +++ b/contrib/dlz/modules/mysql/Makefile @@ -27,7 +27,7 @@ prefix = /usr 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 diff --git a/contrib/dlz/modules/mysqldyn/Makefile b/contrib/dlz/modules/mysqldyn/Makefile index b498ed2b00c..38fe4ff9b18 100644 --- a/contrib/dlz/modules/mysqldyn/Makefile +++ b/contrib/dlz/modules/mysqldyn/Makefile @@ -27,7 +27,7 @@ prefix = /usr 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