f745590297
As it is also broken on arc, bfin and microblaze and brings very limited added value. Fixes: http://autobuild.buildroot.net/results/643/643d174836457237615b6504e28d7b3c12a37f93/ http://autobuild.buildroot.net/results/831/831f3a03321cea1b753f3e7dd8d3c6354d51d3e7/ http://autobuild.buildroot.net/results/71d/71dc37f9cc56f3f53676f54bf28f2ca101bc4505/ http://autobuild.buildroot.net/results/61f/61f1e956bb433aa80f859b3cf37d374feee1cb0c/ And many more. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# lame
|
|
#
|
|
################################################################################
|
|
|
|
LAME_VERSION_MAJOR = 3.99
|
|
LAME_VERSION = $(LAME_VERSION_MAJOR).5
|
|
LAME_SITE = http://downloads.sourceforge.net/project/lame/lame/$(LAME_VERSION_MAJOR)
|
|
LAME_DEPENDENCIES = host-pkgconf
|
|
LAME_INSTALL_STAGING = YES
|
|
LAME_CONF_ENV = GTK_CONFIG=/bin/false
|
|
LAME_CONF_OPTS = --enable-dynamic-frontends
|
|
LAME_LICENSE = LGPLv2+
|
|
LAME_LICENSE_FILES = COPYING
|
|
|
|
# Building lame with debug symbols needs the following macros to be
|
|
# defined: _FPU_MASK_IM, _FPU_MASK_ZM, _FPU_MASK_OM.
|
|
# So, if BR2_ENABLE_DEBUG is selected, then we have force lame to be
|
|
# built without debug symbols because a number of architectures don't
|
|
# have those macros defined.
|
|
LAME_CONF_OPTS += --disable-debug
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
LAME_DEPENDENCIES += libsndfile
|
|
LAME_CONF_OPTS += --with-fileio=sndfile
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
LAME_DEPENDENCIES += ncurses
|
|
endif
|
|
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
define LAME_BIGENDIAN_ARCH
|
|
echo "#define WORDS_BIGENDIAN 1" >>$(@D)/config.h
|
|
endef
|
|
endif
|
|
|
|
LAME_POST_CONFIGURE_HOOKS += LAME_BIGENDIAN_ARCH
|
|
|
|
$(eval $(autotools-package))
|