This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch dhgutteridge-patch-1
in repository e16.
View the commit online.
commit 21f58dbf69af6fc128eaf8ec69aec1150f746fc6
Author: dhgutteridge <dhgutteri...@hotmail.com>
AuthorDate: Sun Dec 15 15:17:40 2024 -0800
Sound: Make with-sound-player option work
The actual value of the application substitution was clobbered and
became "yes". Noted on NetBSD, which has audioplay(1) not aplay(1).
---
configure.ac | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 0ccb3234..7106fd7f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -159,8 +159,7 @@ AC_ARG_ENABLE(sound_player,
enable_sound_player="yes")
AC_ARG_WITH(sound_player,
AS_HELP_STRING([--with-sound-player],
- [Audio player @<:@default="/usr/bin/aplay -q %s"@:>@]),
- with_sound_player="$enableval",
+ [Audio player @<:@default="/usr/bin/aplay -q %s"@:>@]),,
with_sound_player="/usr/bin/aplay -q %s")
if test "x$enable_sound_player" = "xyes"; then
AC_DEFINE(USE_SOUND_PLAYER, 1, [Play sounds using audio player])
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.