mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:10:00 -04: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. (cherry picked from commit 38c740053b4905c48128bc0044a081bab809bf76)
This commit is contained in:
parent
5cb75e3c7a
commit
4078990717
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue