From b47e41db742321d29171cc3b5844b9ad235cb0d8 Mon Sep 17 00:00:00 2001 From: Matthijs Mekking Date: Fri, 5 Aug 2022 11:43:00 +0200 Subject: [PATCH] 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. --- contrib/dlz/modules/mysql/Makefile | 2 +- contrib/dlz/modules/mysqldyn/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/dlz/modules/mysql/Makefile b/contrib/dlz/modules/mysql/Makefile index 017de92c6c..606dcefe6c 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 b498ed2b00..38fe4ff9b1 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