2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.ac: Fix bug in librpc activation, having introduced by
	yesterday's patch.
This commit is contained in:
Ralf Corsepius
2002-08-07 07:24:06 +00:00
parent 45afe48ace
commit 85eb57e718
2 changed files with 16 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Fix bug in librpc activation, having introduced by
yesterday's patch.
2002-08-06 Joel Sherrill <joel@OARcorp.com> 2002-08-06 Joel Sherrill <joel@OARcorp.com>
* configure.ac: or32 does not currently support librpc. * configure.ac: or32 does not currently support librpc.

View File

@@ -67,12 +67,17 @@ AM_CONDITIONAL([LIBSCORECPU],
AC_CONFIG_SUBDIRS([libcsupport]) AC_CONFIG_SUBDIRS([libcsupport])
AC_CONFIG_SUBDIRS([libblock]) AC_CONFIG_SUBDIRS([libblock])
AC_CONFIG_SUBDIRS([libfs]) AC_CONFIG_SUBDIRS([libfs])
AS_IF([test x"$HAS_NETWORKING" = x"yes"], AS_IF([test x"$HAS_NETWORKING" = x"yes"],[
[AC_CONFIG_SUBDIRS(libnetworking) AC_CONFIG_SUBDIRS(libnetworking)
AS_IF([test x"$RTEMS_CPU" != x"c4x" -o test x"$RTEMS_CPU" != x"or32"],[ ## FIXME: Should better use a feature-based test
AC_CONFIG_SUBDIRS([librpc]) case "$RTEMS_CPU" in
LIBRPC=yes],[ c4x ) LIBRPC=no;;
LIBRPC=no or32 ) LIBRPC=no;;
* ) LIBRPC=yes;;
esac
AS_IF([test "$LIBRPC" = "yes"]
[AC_CONFIG_SUBDIRS([librpc])
]) ])
]) ])
AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"]) AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"])