Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatryk Obara <dreamer.tan@gmail.com>2021-02-12 18:27:56 +0300
committerPatryk Obara <patryk.obara@gmail.com>2021-02-12 23:41:06 +0300
commit3fc7d92ed531a28ca0795ed89b44c42373538f63 (patch)
tree5af4257b16ff5c03e5274eb166748c66934efdf7 /meson_options.txt
parentd197d78ea177312d4111a7d9d0da8ce883e43180 (diff)
Provide an option for disabling ALSA dependency
We found that at least one Linux-like environment (Termux) provides access to ALSA, but is missing ALSA development libraries in the repo.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 5aafe7619..6c39f573a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -28,6 +28,17 @@ option('use_png',
value : true,
description : 'Enable saving screenshots in .png format')
+# This option exists only for rare situations when Linux developer cannot
+# install ALSA library headers on their machine.
+#
+# 'auto' translates to 'true' on Linux systems and 'false' everywhere else.
+#
+option('use_alsa',
+ type : 'combo',
+ choices : ['auto', 'true', 'false'],
+ value : 'auto',
+ description : 'Enable ALSA MIDI support')
+
option('enable_debugger',
type : 'combo',
choices : ['normal', 'heavy', 'none'],