View Single Post
  #1  
Old 08-29-2007, 10:19 AM
sfisque
Hill Giant
 
Join Date: Oct 2006
Posts: 248
Default Linux Build (1035)

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
Reply With Quote