summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-08-15 08:36:03 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-08-15 08:36:03 +0000
commit39d82a5ab73ecf31890c8719d5068ef1a2e98ef3 (patch)
tree6aa6a019874832f21df8cab3e1f129bcfb5bb93f
parentf6d743af3f7b9154a5d9e6b8696297d697a8f494 (diff)
downloadrsyslog-39d82a5ab73ecf31890c8719d5068ef1a2e98ef3.tar.gz
rsyslog-39d82a5ab73ecf31890c8719d5068ef1a2e98ef3.tar.xz
rsyslog-39d82a5ab73ecf31890c8719d5068ef1a2e98ef3.zip
fix in linux makefile detected during testing
-rw-r--r--linux/Makefile4
1 files 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