Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: exclude portaudio plugin from default list #928

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ ENDIF()
IF (CMAKE_SYSTEM_NAME MATCHES "Darwin")
SET(BUILTIN_CURL_DEFAULT "OFF")
SET(PULSEAUDIO_DEFAULT "OFF")
SET(PORTAUDIO_PLUGIN_DEFAULT "OFF")
SET(ASAN_DEFAULT "OFF")

ADD_DEFINITIONS(
Expand All @@ -91,7 +90,6 @@ IF (CMAKE_SYSTEM_NAME MATCHES "Darwin")
ELSE()
SET(BUILTIN_CURL_DEFAULT "ON")
SET(PULSEAUDIO_DEFAULT "ON")
SET(PORTAUDIO_PLUGIN_DEFAULT "ON")

ADD_DEFINITIONS(
# Run-time buffer overflow detection
Expand Down Expand Up @@ -120,7 +118,7 @@ DEFINE_FEATURE(GSTREAMER_PLUGIN ON "GStreamer plugin")
DEFINE_FEATURE(GSTREAMER_PLUGIN_VOLUME ON "gstreamer plugin volume")
DEFINE_FEATURE(OPUS_PLUGIN ON "OPUS plugin")
DEFINE_FEATURE(SPEEX_PLUGIN ON "SPEEX plugin")
DEFINE_FEATURE(PORTAUDIO_PLUGIN ${PORTAUDIO_PLUGIN_DEFAULT} "PortAudio plugin")
DEFINE_FEATURE(PORTAUDIO_PLUGIN OFF "PortAudio plugin")
DEFINE_FEATURE(OPUSENC_PLUGIN OFF "OPUS encoder plugin")

DEFINE_FEATURE(LIBRARY_ONLY OFF "compile only SDK libraries")
Expand Down