I should have missed something about this. For example, for /databases/mariadb55-server the config options of
But I'd like to change some other config options, to those that are used in a Linux distro, like:
How can I change these options?
make config are:
Code:
# make showconfig
===> The following configuration options are available for mariadb55-server-5.5.35:
SSL=on: SSL protocol support
OPENSSL=off: Use OpenSSL instead of bundled yassl
PORTSSL=off: Use OpenSSL from port (requires OPENSSL to be set)
FASTMTX=off: Replace mutexes with spinlocks
OQGRAPH=off: Open Query Graph Computation engine
MAXKEY=on: Change max key length from 1000 to 4000
===> Use 'make config' to modify these settings
But I'd like to change some other config options, to those that are used in a Linux distro, like:
Code:
cmake
-DWITH_EXTRA_CHARSETS=complex \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DENABLED_LOCAL_INFILE=ON \
-DWITH_EMBEDDED_SERVER=${EMBEDDED} \
-DWITH_READLINE=ON \
-DWITH_ZLIB=system \
-DUSE_ARIA_FOR_TMP_TABLES=ON
How can I change these options?