diff options
author | unknown <svoj@april.(none)> | 2006-05-19 17:46:34 +0500 |
---|---|---|
committer | unknown <svoj@april.(none)> | 2006-05-19 17:46:34 +0500 |
commit | fe7716dad927beb48709cfebbe3355c8495750c1 (patch) | |
tree | 33f8aaeee01fa2f1c0c6af355323618220da2ee7 /plugin | |
parent | 481ba7789b6b3113c34585af84310d01a8c75d1a (diff) | |
download | mariadb-git-fe7716dad927beb48709cfebbe3355c8495750c1.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.
plugin/fulltext/Makefile.am:
Compile mypluglib as dynamic mysql plugin.
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 |