From 39d82a5ab73ecf31890c8719d5068ef1a2e98ef3 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 15 Aug 2005 08:36:03 +0000 Subject: fix in linux makefile detected during testing --- linux/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/Makefile b/linux/Makefile index 8a38f295..0be949d9 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -25,7 +25,7 @@ FEATURE_LARGEFILE=1 # Enable database support (off by default, must be turned # on when support for MySQL is desired). -FEATURE_DB=0 +FEATURE_DB=1 ############################################################# # END OF USER SETTINGS # @@ -47,7 +47,7 @@ ifeq ($(strip $(FEATURE_DB)), 1) endif # Include MySQL client lib if DB is selected -ifdef WITH_DB +ifdef WITHDB LIBS = -lmysqlclient -L/usr/local/lib/mysql endif -- cgit