package/alure: add libvorbis decoder option
Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
a32fd8dba0
commit
94621a02ca
@ -30,6 +30,13 @@ config BR2_PACKAGE_ALURE_OPUS_DECODER
|
||||
help
|
||||
Enables the built-in libopusfile decoder.
|
||||
|
||||
config BR2_PACKAGE_ALURE_VORBIS_DECODER
|
||||
bool "vorbis decoder"
|
||||
select BR2_PACKAGE_LIBOGG
|
||||
select BR2_PACKAGE_LIBVORBIS
|
||||
help
|
||||
Enables the built-in libvorbis decoder.
|
||||
|
||||
endif
|
||||
|
||||
comment "alure needs a toolchain w/ C++, gcc >= 4.9, NPTL, wchar"
|
||||
|
@ -18,7 +18,6 @@ ALURE_CONF_OPTS = -DALURE_INSTALL=ON \
|
||||
-DALURE_BUILD_EXAMPLES=OFF \
|
||||
-DALURE_ENABLE_MINIMP3=OFF \
|
||||
-DALURE_ENABLE_SNDFILE=OFF \
|
||||
-DALURE_ENABLE_VORBIS=OFF \
|
||||
-DALURE_ENABLE_WAVE=ON
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ALURE_FLAC_DECODER),y)
|
||||
@ -34,6 +33,13 @@ else
|
||||
ALURE_CONF_OPTS += -DALURE_ENABLE_OPUS=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ALURE_VORBIS_DECODER),y)
|
||||
ALURE_CONF_OPTS += -DALURE_ENABLE_VORBIS=ON
|
||||
ALURE_DEPENDENCIES += libogg libvorbis
|
||||
else
|
||||
ALURE_CONF_OPTS += -DALURE_ENABLE_VORBIS=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
ALURE_CONF_OPTS += -DALURE_BUILD_SHARED=OFF \
|
||||
-DALURE_BUILD_STATIC=ON
|
||||
|
Loading…
Reference in New Issue
Block a user