summaryrefslogtreecommitdiffstats
path: root/tools/Makefile
diff options
context:
space:
mode:
authorAndreas Bießmann <andreas.devel@googlemail.com>2016-02-16 23:29:28 +0100
committerTom Rini <trini@konsulko.com>2016-02-24 18:43:58 -0500
commitc6e3e8213aa715160067a9c9964a756d382a6314 (patch)
tree6da33482081a8a82cfad157eacd5e8644c250acf /tools/Makefile
parentc190fbd010a00e16e9599575b43c5a7c7bc7ec09 (diff)
downloadtalos-obmc-uboot-c6e3e8213aa715160067a9c9964a756d382a6314.tar.gz
talos-obmc-uboot-c6e3e8213aa715160067a9c9964a756d382a6314.zip
tools: -Wno-deprecated-declarations for OpenSSL on darwin
Since OpenSSL is deprecated on OS X in favour of Common Crypto API disable the warning for this host OS. Another solution would be to add some glue layer for crypto stuff, but I think this is not worth the effort. Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 1382b0562e..2881a7c439 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -129,6 +129,14 @@ endif
ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_FIT_SIGNATURE),)
HOSTLOADLIBES_mkimage += \
$(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto")
+
+# OS X deprecate openssl in favour of CommonCrypto, supress deprecation
+# warnings on those systems
+ifeq ($(HOSTOS),darwin)
+HOSTCFLAGS_mxsimage.o += -Wno-deprecated-declarations
+HOSTCFLAGS_image-sig.o += -Wno-deprecated-declarations
+HOSTCFLAGS_rsa-sign.o += -Wno-deprecated-declarations
+endif
endif
HOSTLOADLIBES_dumpimage := $(HOSTLOADLIBES_mkimage)
OpenPOWER on IntegriCloud