summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorSatya B <satya.bn@sun.com>2009-12-14 13:42:26 +0530
committerSatya B <satya.bn@sun.com>2009-12-14 13:42:26 +0530
commitf0ef41058c80f4c21a243f69ca8686956972e471 (patch)
treed1b01a9bea854c8a3db34ce3c8ae8c7e9a0d46b9 /storage
parent97a5d25938945835dd06c24a579bf9d4a2d2f4c2 (diff)
downloadmariadb-git-f0ef41058c80f4c21a243f69ca8686956972e471.tar.gz
Fix for BUG#49502 - CMake error compiling 5.1 on Windows
When applying innodb snapshot 1.0.6 the storage engine name for innodb plugin under windows was changed from INNODB_PLUGIN to INNOBASE. This is a wrong and changing back the name to INNODB_PLUGIN. storage/innodb_plugin/CMakeLists.txt: Fix for BUG#49502 - CMake error compiling 5.1 on Windows Change the storage engine name to INNODB_PLUGIN in CMakeLists.txt
Diffstat (limited to 'storage')
-rw-r--r--storage/innodb_plugin/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innodb_plugin/CMakeLists.txt b/storage/innodb_plugin/CMakeLists.txt
index ad483779152..25cd212a473 100644
--- a/storage/innodb_plugin/CMakeLists.txt
+++ b/storage/innodb_plugin/CMakeLists.txt
@@ -81,4 +81,4 @@ SET(INNODB_PLUGIN_SOURCES btr/btr0btr.c btr/btr0cur.c btr/btr0pcur.c btr/btr0sea
ut/ut0byte.c ut/ut0dbg.c ut/ut0mem.c ut/ut0rnd.c ut/ut0ut.c ut/ut0vec.c
ut/ut0list.c ut/ut0wqueue.c)
ADD_DEFINITIONS(-DHAVE_WINDOWS_ATOMICS -DIB_HAVE_PAUSE_INSTRUCTION)
-MYSQL_STORAGE_ENGINE(INNOBASE)
+MYSQL_STORAGE_ENGINE(INNODB_PLUGIN)