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. Regards, Sergei