diff options
author | svoj@april.(none) <> | 2006-05-19 17:46:34 +0500 |
---|---|---|
committer | svoj@april.(none) <> | 2006-05-19 17:46:34 +0500 |
commit | eddfcc147c0bc1c5db483efb67587681f1a154c0 (patch) | |
tree | 33f8aaeee01fa2f1c0c6af355323618220da2ee7 /plugin | |
parent | 9836600b702da8c195a37f8296509472446e5666 (diff) | |
download | mariadb-git-eddfcc147c0bc1c5db483efb67587681f1a154c0.tar.gz |
BUG#19907 - simple_parser plugin cannot be installed
The problem was that simple_parser was compiled as static plugin, which
is intended to be linked into server, but not plugged.
This patch makes simple_parser to be compiled as dynamic plugin by adding
-DMYSQL_DYNAMIC_PLUGIN into CFLAGS.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/fulltext/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/fulltext/Makefile.am b/plugin/fulltext/Makefile.am index 4df5a1dc78a..7b4ae22cbd2 100644 --- a/plugin/fulltext/Makefile.am +++ b/plugin/fulltext/Makefile.am @@ -6,4 +6,4 @@ noinst_LTLIBRARIES= mypluglib.la #pkglib_LTLIBRARIES= mypluglib.la mypluglib_la_SOURCES= plugin_example.c mypluglib_la_LDFLAGS= -module -rpath $(pkglibdir) - +mypluglib_la_CFLAGS= -DMYSQL_DYNAMIC_PLUGIN |