there is a bug in the makefile for ./zone in the 1035 (and possibly further back) build.
the culprit is a pair of "hard coded" references to mysql:
these two lines:
Code:
#MYSQL_FLAGS=-I/usr/include/mysql
#MYSQL_LIB=-L/usr/lib/mysql -lmysqlclient -lz -lcrypt -lnsl -lm -lc -lnss_files -lnss_dns -lresolv -lc -lnss_files -lnss_dns -lresolv
need to be replaced with:
Code:
MYSQL_FLAGS=$(shell mysql_config --cflags)
MYSQL_LIB=$(shell mysql_config --libs)
=sfisque