2006-11-18 Ralf Corsépius <ralf.corsepius@rtems.org>

* configure.ac: Remove $LIBRPC.
This commit is contained in:
Ralf Corsepius
2006-11-18 02:43:10 +00:00
parent 7b6d1b50da
commit 461d93f4a7
2 changed files with 2 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
2006-11-18 Ralf Corsépius <ralf.corsepius@rtems.org> 2006-11-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Remove $LIBRPC.
* configure.ac: Check for uint64_t, int64_t. * configure.ac: Check for uint64_t, int64_t.
* configure.ac, Makefile.am, configure.ac, ftpd/Makefile.am, * configure.ac, Makefile.am, configure.ac, ftpd/Makefile.am,
httpd/Makefile.am, libnetworking/Makefile.am, pppd/Makefile.am, httpd/Makefile.am, libnetworking/Makefile.am, pppd/Makefile.am,

View File

@@ -43,16 +43,6 @@ RTEMS_CHECK_POSIX_API
RTEMS_CHECK_ITRON_API RTEMS_CHECK_ITRON_API
RTEMS_CHECK_NETWORKING RTEMS_CHECK_NETWORKING
AS_IF([test x"$HAS_NETWORKING" = x"yes"],[
## FIXME: Should better use a feature-based test
AC_MSG_CHECKING([whether CPU supports librpc])
case "$RTEMS_CPU" in
c4x ) LIBRPC=no;;
* ) LIBRPC=yes;;
esac
AC_MSG_RESULT([$LIBRPC])
])
AC_ARG_ENABLE([deprecated], AC_ARG_ENABLE([deprecated],
[AS_HELP_STRING(--enable-deprecated,allow using deprecated files)], [AS_HELP_STRING(--enable-deprecated,allow using deprecated files)],
[case "${enable_deprecated}" in [case "${enable_deprecated}" in
@@ -257,7 +247,7 @@ AC_CHECK_FUNCS(strlcpy strlcat)
# ... far too many conditionals ... # ... far too many conditionals ...
AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"]) AM_CONDITIONAL(LIBRPC,[test "$HAS_NETWORKING" = "yes"])
AM_CONDITIONAL(UNIX,[test x"${RTEMS_CPU}" = x"unix"]) AM_CONDITIONAL(UNIX,[test x"${RTEMS_CPU}" = x"unix"])
AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes") AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes")