package/taglib: drop config options to enable MP4/ASF support

Both options where removed in git commit dd846904cbc1ef3ee628d77f0c9df88ef8967816
back in year 2011.

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
[yann.morin.1998@free.fr: drop the legacy handling]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Jörg Krause 2021-02-17 08:44:02 +01:00 committed by Yann E. MORIN
parent f826a944ae
commit 3590ebec28
2 changed files with 0 additions and 18 deletions

View File

@ -11,15 +11,5 @@ config BR2_PACKAGE_TAGLIB
http://taglib.org/
if BR2_PACKAGE_TAGLIB
config BR2_PACKAGE_TAGLIB_MP4
bool "taglib mp4 support"
config BR2_PACKAGE_TAGLIB_ASF
bool "taglib wma support"
endif
comment "taglib needs a toolchain w/ C++, wchar"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR

View File

@ -20,14 +20,6 @@ ifeq ($(BR2_PACKAGE_ZLIB),y)
TAGLIB_DEPENDENCIES += zlib
endif
ifeq ($(BR2_PACKAGE_TAGLIB_ASF),y)
TAGLIB_CONF_OPTS += -DWITH_ASF=ON
endif
ifeq ($(BR2_PACKAGE_TAGLIB_MP4),y)
TAGLIB_CONF_OPTS += -DWITH_MP4=ON
endif
define TAGLIB_REMOVE_DEVFILE
rm -f $(TARGET_DIR)/usr/bin/taglib-config
endef