From a31845f7f9b4770cf9ddd8b6820641d2f4f4c1da Mon Sep 17 00:00:00 2001 From: Daniel Hellstrom Date: Mon, 28 Nov 2011 10:11:10 +0100 Subject: LIBPCI: added PCI layer to cpukit/libpci --- cpukit/configure.ac | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'cpukit/configure.ac') diff --git a/cpukit/configure.ac b/cpukit/configure.ac index 00580824a0..d04ce87efd 100644 --- a/cpukit/configure.ac +++ b/cpukit/configure.ac @@ -410,6 +410,17 @@ esac AM_CONDITIONAL(SHA,[test x"$HAVE_SHA" = x"yes"]) AC_MSG_RESULT([$HAVE_SHA]) +# Filter libpci to only build for architectures that have support for it +AC_MSG_CHECKING([whether CPU supports libpci]) +case $RTEMS_CPU in + sparc) + HAVE_LIBPCI=yes ;; + *) + HAVE_LIBPCI=no ;; +esac +AM_CONDITIONAL(LIBPCI,[test x"$HAVE_LIBPCI" = x"yes"]) +AC_MSG_RESULT([$HAVE_LIBPCI]) + RTEMS_AMPOLISH3 # Explicitly list all Makefiles here @@ -448,6 +459,7 @@ libgnat/Makefile libcrypt/Makefile libcsupport/Makefile libnetworking/Makefile +libpci/Makefile librpc/Makefile libmisc/Makefile libi2c/Makefile -- cgit v1.2.3