summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-07 07:48:04 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-07 07:48:04 +0000
commite3368828603fcced2b880969f83fd1a9f72f4050 (patch)
tree6de74c68efcd338ca7c586b570bf4ecbab03cd8d
parent2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-e3368828603fcced2b880969f83fd1a9f72f4050.tar.bz2
2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add missing ',' to librpc activation. Add AC_MSG_CHECKING/AC_MSG_RESULT. * aclocal/check-networking.m4: Let AC_MSG_CHECKING refer to CPU.
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/aclocal/check-networking.m42
-rw-r--r--cpukit/configure.ac5
3 files changed, 10 insertions, 3 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index cb1cae8982..ff8525def2 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,11 @@
2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * configure.ac: Add missing ',' to librpc activation.
+ Add AC_MSG_CHECKING/AC_MSG_RESULT.
+ * aclocal/check-networking.m4: Let AC_MSG_CHECKING refer to CPU.
+
+2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* configure.ac: Fix bug in librpc activation, having introduced by
yesterday's patch.
diff --git a/cpukit/aclocal/check-networking.m4 b/cpukit/aclocal/check-networking.m4
index db3a0c60d3..8c4fd3c633 100644
--- a/cpukit/aclocal/check-networking.m4
+++ b/cpukit/aclocal/check-networking.m4
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_CHECK_NETWORKING,
AC_REQUIRE([RTEMS_CHECK_CPU])dnl
AC_REQUIRE([RTEMS_ENABLE_NETWORKING])dnl
-AC_CACHE_CHECK([whether BSP supports networking],
+AC_CACHE_CHECK([whether CPU supports networking],
rtems_cv_HAS_NETWORKING,
[dnl
case "$RTEMS_CPU" in
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index 6dd112f780..70e5dc3508 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -70,13 +70,14 @@ AC_CONFIG_SUBDIRS([libfs])
AS_IF([test x"$HAS_NETWORKING" = x"yes"],[
AC_CONFIG_SUBDIRS(libnetworking)
## FIXME: Should better use a feature-based test
+AC_MSG_CHECKING([whether CPU supports librpc])
case "$RTEMS_CPU" in
c4x ) LIBRPC=no;;
or32 ) LIBRPC=no;;
* ) LIBRPC=yes;;
esac
-
- AS_IF([test "$LIBRPC" = "yes"]
+AC_MSG_RESULT([$LIBRPC])
+ AS_IF([test "$LIBRPC" = "yes"],
[AC_CONFIG_SUBDIRS([librpc])
])
])