]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix mysql bindings
authorMatthijs Mekking <matthijs@isc.org>
Fri, 5 Aug 2022 09:43:00 +0000 (11:43 +0200)
committerMatthijs Mekking <matthijs@isc.org>
Fri, 5 Aug 2022 09:43:00 +0000 (11:43 +0200)
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.

contrib/dlz/modules/mysql/Makefile
contrib/dlz/modules/mysqldyn/Makefile

index 017de92c6c1206480234567c40870c1c81733c0b..606dcefe6cfb4d09b47cef0ef6cbe88daa8eb524 100644 (file)
@@ -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
 
index b498ed2b00cbc9d46045bc75cf702101860ef1bc..38fe4ff9b18730f372df4fb7066a0c9bfd79fae5 100644 (file)
@@ -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