Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mariotaku/ss4s
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 02071c1aa66d5738648625a7b2f0621f972a9741
Choose a base ref
...
head repository: mariotaku/ss4s
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e11622d977b328e238665838b26f143868b44e25
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 2, 2023

  1. Copy the full SHA
    e11622d View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 modules/alsa/CMakeLists.txt
  2. +1 −1 modules/pulse/CMakeLists.txt
2 changes: 1 addition & 1 deletion modules/alsa/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
find_package(ALSA)

if (ALSA_FOUND)
ss4s_add_module(alsa FOR_AUDIO DISPLAY_NAME ALSA SOURCES alsa.c)
ss4s_add_module(alsa FOR_AUDIO DISPLAY_NAME ALSA WEIGHT 10 SOURCES alsa.c)
if (NOT SS4S_MODULE_TARGET)
return()
endif ()
2 changes: 1 addition & 1 deletion modules/pulse/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ find_package(PkgConfig REQUIRED)
pkg_check_modules(PULSE libpulse-simple)

if (PULSE_FOUND)
ss4s_add_module(pulse FOR_AUDIO DISPLAY_NAME PulseAudio SOURCES pulse.c)
ss4s_add_module(pulse FOR_AUDIO DISPLAY_NAME PulseAudio WEIGHT 10 SOURCES pulse.c)
if (NOT SS4S_MODULE_TARGET)
return()
endif ()