mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-15 15:12:11 +00:00
If ALLOW_GNU is not defined, SKIP_MD2 is a nop. Fixes: http://autobuild.buildroot.net/results/f606ec1fff4cea257a4c6274bc5603efdfc439ad/ Signed-off-by: Romain Naour <romain.naour@openwide.fr> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
688 B
Makefile
20 lines
688 B
Makefile
################################################################################
|
|
#
|
|
# ipmiutil
|
|
#
|
|
################################################################################
|
|
|
|
IPMIUTIL_VERSION = 2.9.5
|
|
IPMIUTIL_SITE = http://sourceforge.net/projects/ipmiutil/files/
|
|
IPMIUTIL_LICENSE = BSD-3c
|
|
IPMIUTIL_LICENSE_FILES = COPYING
|
|
# We're patching configure.ac
|
|
IPMIUTIL_AUTORECONF = YES
|
|
# tests against distro libcrypto so it might get a false positive when
|
|
# the openssl version is old, so force it off
|
|
# SKIP_MD2 can be used only if ALLOW_GNU is defined.
|
|
IPMIUTIL_CONF_OPTS = CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2"
|
|
IPMIUTIL_DEPENDENCIES = openssl
|
|
|
|
$(eval $(autotools-package))
|