From 77510c72dc2c49c2ade13caada77efb18a1adeb8 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 5 Mar 2015 10:53:20 +0100 Subject: libmd: Disable SHA modules for m32c Close #2219. --- cpukit/configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'cpukit/configure.ac') diff --git a/cpukit/configure.ac b/cpukit/configure.ac index 27ffd81c58..5067315a50 100644 --- a/cpukit/configure.ac +++ b/cpukit/configure.ac @@ -385,6 +385,16 @@ esac AM_CONDITIONAL(LIBDL,[test x"$HAVE_LIBDL" = x"yes"]) AC_MSG_RESULT([$HAVE_LIBDL]) +AC_MSG_CHECKING([whether CPU supports SHA]) +case $RTEMS_CPU in + m32c) + HAVE_SHA=no ;; + *) + HAVE_SHA=yes ;; +esac +AM_CONDITIONAL(SHA,[test x"$HAVE_SHA" = x"yes"]) +AC_MSG_RESULT([$HAVE_SHA]) + RTEMS_AMPOLISH3 # Explicitly list all Makefiles here -- cgit v1.2.3