diff options
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 = ../ |