diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-09-09 15:35:47 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-09-09 15:35:47 +0200 |
commit | 44fec70b7968778808673d9668c5fe08da03a7ca (patch) | |
tree | 3c0d1d8ae9467abad45be4540524a3ec99d6d70b /storage/csv | |
parent | b7158601d35456fde4167fe44dcf505495b045af (diff) | |
download | mariadb-git-44fec70b7968778808673d9668c5fe08da03a7ca.tar.gz |
build dynamic plugins with the -shared libtool option to avoid
double compilation
Diffstat (limited to 'storage/csv')
-rw-r--r-- | storage/csv/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/csv/Makefile.am b/storage/csv/Makefile.am index 3a00ae85e20..75ad9062984 100644 --- a/storage/csv/Makefile.am +++ b/storage/csv/Makefile.am @@ -32,7 +32,7 @@ noinst_HEADERS = ha_tina.h transparent_file.h EXTRA_LTLIBRARIES = ha_csv.la pkglib_LTLIBRARIES = @plugin_csv_shared_target@ ha_csv_la_LDFLAGS = -module -rpath $(MYSQLLIBdir) -ha_csv_la_CXXFLAGS = $(AM_CXXFLAGS) -DMYSQL_PLUGIN +ha_csv_la_CXXFLAGS = -shared $(AM_CXXFLAGS) -DMYSQL_PLUGIN ha_csv_la_SOURCES = transparent_file.cc ha_tina.cc EXTRA_LIBRARIES = libcsv.a |