SDL: remove references to pulseaudio

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-11-19 07:48:31 +01:00
parent b3e958b8a4
commit 9a8126d5ae
2 changed files with 2 additions and 11 deletions

View File

@ -2,12 +2,6 @@
. config/options $1 . config/options $1
if [ "$PULSEAUDIO_SUPPORT" = yes ]; then
SDL_PULSEAUDIO="--enable-pulseaudio --enable-pulseaudio-shared"
else
SDL_PULSEAUDIO="--disable-pulseaudio --disable-pulseaudio-shared"
fi
cd $PKG_BUILD cd $PKG_BUILD
./configure --host=$TARGET_NAME \ ./configure --host=$TARGET_NAME \
--build=$HOST_NAME \ --build=$HOST_NAME \
@ -38,7 +32,8 @@ cd $PKG_BUILD
--disable-esd \ --disable-esd \
--disable-esdtest \ --disable-esdtest \
--disable-esd-shared \ --disable-esd-shared \
$SDL_PULSEAUDIO \ --disable-pulseaudio \
--disable-pulseaudio-shared \
--disable-arts \ --disable-arts \
--disable-arts-shared \ --disable-arts-shared \
--disable-nas \ --disable-nas \

View File

@ -13,7 +13,3 @@ PKG_SHORTDESC="libsdl: A cross-platform Graphic API"
PKG_LONGDESC="Simple DirectMedia Layer is a cross-platform multimedia library designed to provide fast access to the graphics framebuffer and audio device. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of 'Civilization: Call To Power.' Simple DirectMedia Layer supports Linux, Win32, BeOS, MacOS, Solaris, IRIX, and FreeBSD." PKG_LONGDESC="Simple DirectMedia Layer is a cross-platform multimedia library designed to provide fast access to the graphics framebuffer and audio device. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of 'Civilization: Call To Power.' Simple DirectMedia Layer supports Linux, Win32, BeOS, MacOS, Solaris, IRIX, and FreeBSD."
PKG_IS_ADDON="no" PKG_IS_ADDON="no"
if [ "$PULSEAUDIO_SUPPORT" = yes ]; then
PKG_DEPENDS="$PKG_DEPENDS pulseaudio"
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS pulseaudio"
fi