Skip to content

Commit

Permalink
CMake/ruby: enable ALSA audio driver by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bsdcode committed Nov 3, 2024
1 parent 0b34c49 commit 3a3477d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ruby/cmake/os-freebsd.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ else()
target_disable_feature(ruby "OSS audio driver")
endif()

option(ARES_ENABLE_ALSA "Enable the ALSA audio driver")
option(ARES_ENABLE_ALSA "Enable the ALSA audio driver" ON)
if(ARES_ENABLE_ALSA)
find_package(ALSA)
endif()
Expand Down
2 changes: 1 addition & 1 deletion ruby/cmake/os-linux.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ else()
target_disable_feature(ruby "OSS audio driver")
endif()

option(ARES_ENABLE_ALSA "Enable the ALSA audio driver")
option(ARES_ENABLE_ALSA "Enable the ALSA audio driver" ON)
if(ARES_ENABLE_ALSA)
find_package(ALSA)
endif()
Expand Down

0 comments on commit 3a3477d

Please sign in to comment.