summaryrefslogtreecommitdiffstats
path: root/linux
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-08-15 08:08:44 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-08-15 08:08:44 +0000
commitf6d743af3f7b9154a5d9e6b8696297d697a8f494 (patch)
treea5fcd695a348a73e1a6faf95a9e858d7440c6b2b /linux
parentbe0d9edbee79d6a0331e64697642be393fe776ab (diff)
downloadrsyslog-f6d743af3f7b9154a5d9e6b8696297d697a8f494.tar.gz
rsyslog-f6d743af3f7b9154a5d9e6b8696297d697a8f494.tar.xz
rsyslog-f6d743af3f7b9154a5d9e6b8696297d697a8f494.zip
fixed bug in makefiles - MySQL support could not be enabled
Diffstat (limited to 'linux')
-rw-r--r--linux/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/Makefile b/linux/Makefile
index f75ccf49..8a38f295 100644
--- a/linux/Makefile
+++ b/linux/Makefile
@@ -43,11 +43,11 @@ ifeq ($(strip $(FEATURE_LARGEFILE)), 0)
endif
ifeq ($(strip $(FEATURE_DB)), 1)
- WITHDB=-DWITHDB
+ WITHDB=-DWITH_DB
endif
# Include MySQL client lib if DB is selected
-ifdef WITHDB
+ifdef WITH_DB
LIBS = -lmysqlclient -L/usr/local/lib/mysql
endif