mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
21 lines
506 B
Bash
21 lines
506 B
Bash
#!/bin/sh
|
|
|
|
#
|
|
# This script is the "standard" way to configure MariaDB on Windows. To be
|
|
# used by buildbot slaves and release build script.
|
|
#
|
|
|
|
set -e
|
|
|
|
cscript win/configure.js \
|
|
WITH_ARCHIVE_STORAGE_ENGINE \
|
|
WITH_BLACKHOLE_STORAGE_ENGINE \
|
|
WITH_CSV_STORAGE_ENGINE \
|
|
WITH_EXAMPLE_STORAGE_ENGINE \
|
|
WITH_FEDERATEDX_STORAGE_ENGINE \
|
|
WITH_MERGE_STORAGE_ENGINE \
|
|
WITH_PARTITION_STORAGE_ENGINE \
|
|
WITH_ARIA_STORAGE_ENGINE \
|
|
WITH_PBXT_STORAGE_ENGINE \
|
|
WITH_XTRADB_STORAGE_ENGINE \
|
|
WITH_EMBEDDED_SERVER
|