16b27f7cdb
- Switch to the maintenance "upstream" repo which regroup updates made for the Debian package - Drop all patches (already in version) - Drop DIEHARDER_M4_CLEAN which is not needed sincec875e5d819
- -fcommon is not needed since8feba3cc2b
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
706 B
Makefile
26 lines
706 B
Makefile
################################################################################
|
|
#
|
|
# dieharder
|
|
#
|
|
################################################################################
|
|
|
|
DIEHARDER_VERSION = 3.31.1.4
|
|
DIEHARDER_SITE = $(call github,eddelbuettel,dieharder,$(DIEHARDER_VERSION))
|
|
DIEHARDER_LICENSE = GPL-2.0 with beverage clause
|
|
DIEHARDER_LICENSE_FILES = COPYING
|
|
DIEHARDER_DEPENDENCIES = gsl
|
|
# configure retrieved from git is outdated
|
|
DIEHARDER_AUTORECONF = YES
|
|
|
|
# fix endianness detection
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
DIEHARDER_CONF_ENV = ac_cv_c_endian=big
|
|
else
|
|
DIEHARDER_CONF_ENV = ac_cv_c_endian=little
|
|
endif
|
|
|
|
# parallel build fail, disable it
|
|
DIEHARDER_MAKE = $(MAKE1)
|
|
|
|
$(eval $(autotools-package))
|