gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. 7ee42e465e45249b76b8


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 7ee42e465e45249b76b8159cf0e3fc25ee4815fa
Date: Wed, 24 Nov 2010 16:49:15 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  7ee42e465e45249b76b8159cf0e3fc25ee4815fa (commit)
      from  d619d4ea5c0c85dcc7e8df0035597f361a85a846 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=7ee42e465e45249b76b8159cf0e3fc25ee4815fa


commit 7ee42e465e45249b76b8159cf0e3fc25ee4815fa
Author: Rob Savoye <address@hidden>
Date:   Wed Nov 24 09:48:57 2010 -0700

    make it possible to configure no sound handler

diff --git a/configure.ac b/configure.ac
index ec49899..ace02c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -751,6 +751,7 @@ dnl --------------------------------------------------------
 dnl  Sound handler selection
 dnl --------------------------------------------------------
 add_sound=
+build_sound_none=no
 build_sound_sdl=no
 build_sound_ahi=no
 build_sound_mkit=no
@@ -761,6 +762,10 @@ AC_ARG_ENABLE(sound,
         build_sound_sdl=yes
         add_sound="sdl"
         ;;
+      none|NONE|None)
+        build_sound_none=yes
+        add_sound="none"
+        ;;
       ahi|AHI|Ahi)
         build_sound_ahi=yes
         add_sound="ahi"
@@ -774,8 +779,10 @@ AC_ARG_ENABLE(sound,
      build_sound_mkit=yes
      add_sound="mkit"
    else
-     build_sound_sdl=yes
-     add_sound=sdl
+     if test x${build_sound_none} = xno; then
+       build_sound_sdl=yes
+       add_sound=sdl
+     fi
    fi]
 )
 

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]