summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author jflatt <jflatt@cox.net>2021-05-24 18:43:06 -0700
committer GitHub <noreply@github.com>2021-05-24 21:43:06 -0400
commit52615c0aca4aa80cdb6c7f54645100766c6043fd (patch)
tree54d03500868782c43de3f8c0dcb1157f292a079e /makefile
parent8021d6be61a6a3e0659fea5dbaf7a2a7ee4d6099 (diff)
Allow building without PulseAudio on Linux (#8015)
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/makefile b/makefile
index a98d55483cf..ef72e17a158 100644
--- a/makefile
+++ b/makefile
@@ -33,6 +33,7 @@
# SDL2_MULTIAPI = 1
# NO_USE_MIDI = 1
# NO_USE_PORTAUDIO = 1
+# NO_USE_PULSEAUDIO = 1
# USE_TAPTUN = 1
# USE_PCAP = 1
# USE_QTDEBUG = 1
@@ -770,6 +771,10 @@ ifdef NO_USE_PORTAUDIO
PARAMS += --NO_USE_PORTAUDIO='$(NO_USE_PORTAUDIO)'
endif
+ifdef NO_USE_PULSEAUDIO
+PARAMS += --NO_USE_PULSEAUDIO='$(NO_USE_PULSEAUDIO)'
+endif
+
ifdef USE_QTDEBUG
PARAMS += --USE_QTDEBUG='$(USE_QTDEBUG)'
endif