diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2006-09-22 11:33:55 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2006-09-22 11:33:55 +0000 |
commit | d25df47af3e89b6256ada0dc9922483c2be16922 (patch) | |
tree | 1c0fb9f6890cc1439532615f8b81df8412cad352 /linux/Makefile | |
parent | 75efe414e1ce082cfbc4e86d57c4dd5ddbf58ae4 (diff) | |
download | rsyslog-d25df47af3e89b6256ada0dc9922483c2be16922.tar.gz rsyslog-d25df47af3e89b6256ada0dc9922483c2be16922.tar.xz rsyslog-d25df47af3e89b6256ada0dc9922483c2be16922.zip |
added fedore mysql libs in Makefile
Diffstat (limited to 'linux/Makefile')
-rw-r--r-- | linux/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linux/Makefile b/linux/Makefile index 9cbe648a..ca56a5cf 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 # Enable regular expressions FEATURE_REGEXP=1 @@ -89,7 +89,10 @@ endif # Include MySQL client lib if DB is selected ifdef WITHDB -LIBS = -lmysqlclient -L/usr/local/lib/mysql +# use the line below for Linux OTHER than Fedora +#LIBS = -lmysqlclient -L/usr/local/lib/mysql +# use the line below for Fedora +LIBS = -lmysqlclient -L/usr/lib/mysql endif VPATH = ../ |