diff options
author | knielsen@mysql.com <> | 2006-03-23 16:34:52 +0100 |
---|---|---|
committer | knielsen@mysql.com <> | 2006-03-23 16:34:52 +0100 |
commit | a3ad39cf663013c09b5dead007ee4900e7587a07 (patch) | |
tree | 468e4f62dd1d5957ac25e9aac949adb6580182e1 /win/config-handlerton.js | |
parent | 9c848813100a935d1b2b7cafe056915c6a08523b (diff) | |
download | mariadb-git-a3ad39cf663013c09b5dead007ee4900e7587a07.tar.gz |
Updated CMake stuff to handle the configurations needed for release
builds.
Diffstat (limited to 'win/config-handlerton.js')
-rw-r--r-- | win/config-handlerton.js | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/win/config-handlerton.js b/win/config-handlerton.js index fd668fa3ec0..1c20767695a 100644 --- a/win/config-handlerton.js +++ b/win/config-handlerton.js @@ -17,16 +17,41 @@ try while (! datafile.AtEndOfStream) { var line = datafile.ReadLine(); - if (line == "WITH_INNODB") + if (line == "WITH_INNOBASE_STORAGE_ENGINE") { extern_line += ",innobase_hton"; address_line += ",&innobase_hton"; } - else if (line == "WITH_PARTITION") + else if (line == "WITH_PARTITION_STORAGE_ENGINE") { extern_line += ",partition_hton"; address_line += ",&partition_hton"; } + else if (line == "WITH_ARCHIVE_STORAGE_ENGINE") + { + extern_line += ",archive_hton"; + address_line += ",&archive_hton"; + } + else if (line == "WITH_BERKELEY_STORAGE_ENGINE") + { + extern_line += ",berkeley_hton"; + address_line += ",&berkeley_hton"; + } + else if (line == "WITH_BLACKHOLE_STORAGE_ENGINE") + { + extern_line += ",blackhole_hton"; + address_line += ",&blackhole_hton"; + } + else if (line == "WITH_EXAMPLE_STORAGE_ENGINE") + { + extern_line += ",example_hton"; + address_line += ",&example_hton"; + } + else if (line == "WITH_FEDERATED_STORAGE_ENGINE") + { + extern_line += ",federated_hton"; + address_line += ",&federated_hton"; + } } datafile.Close(); |