forked from Imagelibrary/rtems
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.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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])
|
||||
])
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user