diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-06 16:01:41 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 26f7fbf5d43e14dd1e16f0595f6348cfddb4e1f1 (patch) | |
tree | 351795c8c1a96340b462f3b92bec88c1afe99d7c /audio/rezound/rezound.SlackBuild | |
parent | 841d471e18251a6c4471c9fa4fbdbf6031b9e785 (diff) | |
download | slackbuilds-26f7fbf5d43e14dd1e16f0595f6348cfddb4e1f1.tar.gz |
audio/rezound: Set pulseaudio as default sound system
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'audio/rezound/rezound.SlackBuild')
-rw-r--r-- | audio/rezound/rezound.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/rezound/rezound.SlackBuild b/audio/rezound/rezound.SlackBuild index 9c31bb0e50..401331322e 100644 --- a/audio/rezound/rezound.SlackBuild +++ b/audio/rezound/rezound.SlackBuild @@ -54,12 +54,12 @@ else LIBDIRSUFFIX="" fi -# Define supported sound system. ALSA is the one enabled by default +# Define supported sound system. PULSE is the one enabled by default oss="--disable-oss" ; [ "${OSS:-no}" != "no" ] && oss="--enable-oss" -alsa="--enable-alsa" ; [ "${ALSA:-yes}" != "yes" ] && alsa="--disable-alsa" +alsa="--disable-alsa" ; [ "${ALSA:-no}" != "no" ] && alsa="--enable-alsa" port="--disable-portaudio" ; [ "${PORT:-no}" != "no" ] && port="--enable-portaudio" jack="--disable-jack" ; [ "${JACK:-no}" != "no" ] && jack="--enable-jack" -pulse="--disable-pulse" ; [ "${PULSE:-no}" != "no" ] && pulse="--enable-pulse" +pulse="--enable-pulse" ; [ "${PULSE:-yes}" != "yes" ] && pulse="--disable-pulse" set -e |