2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

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.
This commit is contained in:
Matthijs Mekking 2022-08-05 11:43:00 +02:00
parent 672972bb56
commit b47e41db74
2 changed files with 2 additions and 2 deletions

View 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

View 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