aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
767 B
Makefile
25 lines
767 B
Makefile
################################################################################
|
|
#
|
|
# mpdecimal
|
|
#
|
|
################################################################################
|
|
|
|
MPDECIMAL_SITE = http://www.bytereef.org/software/mpdecimal/releases
|
|
MPDECIMAL_VERSION = 2.4.0
|
|
MPDECIMAL_INSTALL_STAGING = YES
|
|
MPDECIMAL_LICENSE = BSD-2c
|
|
MPDECIMAL_LICENSE_FILES = LICENSE.txt
|
|
MPDECIMAL_CONF_OPTS = LD="$(TARGET_CC)"
|
|
|
|
# On i386, by default, mpdecimal tries to uses <fenv.h> which is not
|
|
# available in musl/glibc. So in this case, we tell mpdecimal to use
|
|
# the generic 32 bits code, which is anyway the one used on ARM,
|
|
# PowerPC, etc.
|
|
ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),)
|
|
ifeq ($(BR2_i386),y)
|
|
MPDECIMAL_CONF_ENV += MACHINE=ansi32
|
|
endif
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|