The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / mpdecimal / mpdecimal.mk
1 ################################################################################
2 #
3 # mpdecimal
4 #
5 ################################################################################
6
7 # Official site currently down
8 # MPDECIMAL_SITE = http://www.bytereef.org/software/mpdecimal/releases
9
10 MPDECIMAL_SITE = https://launchpad.net/ubuntu/+archive/primary/+files
11 MPDECIMAL_VERSION = 2.4.1
12 MPDECIMAL_SOURCE = mpdecimal_$(MPDECIMAL_VERSION).orig.tar.gz
13 MPDECIMAL_INSTALL_STAGING = YES
14 MPDECIMAL_LICENSE = BSD-2c
15 MPDECIMAL_LICENSE_FILES = LICENSE.txt
16 MPDECIMAL_CONF_OPTS = LD="$(TARGET_CC)"
17 MPDECIMAL_AUTORECONF = YES
18
19 # On i386, by default, mpdecimal tries to uses <fenv.h> which is not
20 # available in musl/glibc. So in this case, we tell mpdecimal to use
21 # the generic 32 bits code, which is anyway the one used on ARM,
22 # PowerPC, etc.
23 ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),)
24 ifeq ($(BR2_i386),y)
25 MPDECIMAL_CONF_ENV += MACHINE=ansi32
26 endif
27 endif
28
29 $(eval $(autotools-package))