summaryrefslogtreecommitdiff
path: root/storage/heap
diff options
context:
space:
mode:
authorVladislav Vaintroub <vvaintroub@mysql.com>2009-12-01 12:00:50 +0100
committerVladislav Vaintroub <vvaintroub@mysql.com>2009-12-01 12:00:50 +0100
commitd2139f313583aa7f6e09a505ea44aff0073d0d0d (patch)
treed89705a5ecb9443a34d6ac498e2557565ff952b2 /storage/heap
parent43770e8f3f3fd22259b330756fad72737b079263 (diff)
downloadmariadb-git-d2139f313583aa7f6e09a505ea44aff0073d0d0d.tar.gz
- Introduce MYSQL_ADD_PLUGIN that replaces MYSQL_STORAGE_ENGINE
- Fix semisync library prefix (remove lib on Unixes) - restrict exported symbols from zlib and yassl (fvisibility=hidden)
Diffstat (limited to 'storage/heap')
-rwxr-xr-xstorage/heap/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/heap/CMakeLists.txt b/storage/heap/CMakeLists.txt
index 1e88ecd503f..32359759abc 100755
--- a/storage/heap/CMakeLists.txt
+++ b/storage/heap/CMakeLists.txt
@@ -21,4 +21,5 @@ SET(HEAP_SOURCES _check.c _rectest.c hp_block.c hp_clear.c hp_close.c hp_create
hp_delete.c hp_extra.c hp_hash.c hp_info.c hp_open.c hp_panic.c
hp_rename.c hp_rfirst.c hp_rkey.c hp_rlast.c hp_rnext.c hp_rprev.c
hp_rrnd.c hp_rsame.c hp_scan.c hp_static.c hp_update.c hp_write.c)
-MYSQL_STORAGE_ENGINE(HEAP)
+
+MYSQL_ADD_PLUGIN(heap ${HEAP_SOURCES} STORAGE_ENGINE MANDATORY RECOMPILE_FOR_EMBEDDED)