summaryrefslogtreecommitdiffstats
path: root/platform/x11/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-07-25 01:17:57 +0200
committerGitHub <noreply@github.com>2018-07-25 01:17:57 +0200
commita501678ba174f9faa1760ce26ec43d96a01adfa0 (patch)
tree11db61cd5afffbcff1977bae82b8d39182b9e766 /platform/x11/detect.py
parent4080e7ff8e992735028f18807713dd0e57c3af9c (diff)
parent7a5f9fc08ea4f25cd20e743a9a1ef5566246cf2c (diff)
downloadredot-engine-a501678ba174f9faa1760ce26ec43d96a01adfa0.tar.gz
Merge pull request #20154 from marcelofg55/midi_driver
Added a new MIDIDriver class
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r--platform/x11/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py
index feaa2e598f..6a7a426804 100644
--- a/platform/x11/detect.py
+++ b/platform/x11/detect.py
@@ -249,7 +249,7 @@ def configure(env):
if (os.system("pkg-config --exists alsa") == 0): # 0 means found
print("Enabling ALSA")
- env.Append(CPPFLAGS=["-DALSA_ENABLED"])
+ env.Append(CPPFLAGS=["-DALSA_ENABLED", "-DALSAMIDI_ENABLED"])
env.ParseConfig('pkg-config alsa --cflags --libs')
else:
print("ALSA libraries not found, disabling driver")