gnash-dev
[Top][All Lists]
Advanced

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

Re: [Gnash-dev] SDL audio replacing..


From: Andrea Palmatè
Subject: Re: [Gnash-dev] SDL audio replacing..
Date: Fri, 19 Jun 2009 13:11:27 +0200
User-agent: Thunderbird 2.0.0.21 (Windows/20090302)

this could be a first step

add_sound=
build_sound_sdl=no
build_sound_ahi=no
AC_ARG_ENABLE(sound,
AC_HELP_STRING([--enable-sound=[[sdl|ahi]]], [Use the specified sound handler (default=sdl)]),
   [case "${enableval}" in
     sdl|SDL|Sdl)
       build_sound_sdl=yes
         add_sound="sdl"
       ;;
     ahi|AHI|Ahi)
       build_sound_ahi=yes
         add_sound="ahi"
       ;;
     esac],
   build_sound_sdl=yes
   add_sound=sdl
)

but i don't know if build_sound_xxx is valid or not

Andrea




reply via email to

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