Am 19.01.2015 um 20:20 schrieb Sergei Golubchik:
Hi, Reindl!
On Jan 19, Reindl Harald wrote:
https://mariadb.atlassian.net/browse/MDEV-7076
well, in general i try to only have Aria/XtraDB/MyISAM
-DWITH_XTRADB_STORAGE_ENGINE=ON \ -DWITH_PARTITION_STORAGE_ENGINE=ON \ -DWITH_ARCHIVE_STORAGE_ENGINE=OFF \ -DWITH_BLACKHOLE_STORAGE_ENGINE=OFF \ -DWITH_SPHINX_STORAGE_ENGINE=OFF \ -DWITH_MROONGA_STORAGE_ENGINE=OFF \ -DWITH_OQGRAPH_STORAGE_ENGINE=OFF \ -DWITH_SPIDER_STORAGE_ENGINE=OFF \ -DWITH_CASSANDRA_STORAGE_ENGINE=OFF \
but OOM in context of "mroonga"
i want my ./configure --help back while in other aspects cmake is really cool there is no way i know to get a list of valid configure options :-(
For cmake there is 'cmake -LH' and 'cmake -LAH' (the second also shows "advanced" options).
But if a variable is never set in cmakefiles (which is the case for some of WITH_xxx and WITHOUT_xxx - they are only checked, but never set), it will not show out in help.
In 10.1 this is fixed in the sense that plugin configuration is now done with PLUGIN_xxx variables. They show up in help, and they are sorted separately, not intermixed with other WITH_xxx variables, like WITH_EMBEDDED_SERVER or WITH_SAFEMALLOC
thanks for feedback can you refer to some docs for that or give examples? currently i have 3 choices in mind -DWITH_MROONGA_STORAGE_ENGINE=OFF \ -DPLUGIN_MROONGA_STORAGE_ENGINE=OFF \ -DPLUGIN_MROONGA=OFF \ https://mariadb.com/kb/en/mariadb/documentation/getting-started/compiling-ma... is not really helpful at all 8also with 5.5)