source: rtems/aclocal/check-rdbg.m4 @ 908436c1

4.104.114.84.95
Last change on this file since 908436c1 was 3a8915e, checked in by Joel Sherrill <joel.sherrill@…>, on 08/06/99 at 17:55:25

Patch rtems-rc-19990709-6-diff from Ralf Corsepius <corsepiu@…>
applied. This modified many Makefiles and custom files and makes many more
settings (network, multiprocessing, etc) gnerated by autoconf.

  • Property mode set to 100644
File size: 396 bytes
Line 
1dnl $Id$
2dnl
3AC_DEFUN(RTEMS_CHECK_RDBG,
4[dnl
5AC_REQUIRE([RTEMS_TOP])dnl
6AC_REQUIRE([RTEMS_CHECK_CPU])dnl
7AC_CACHE_CHECK([whether BSP supports librdbg],
8  rtems_cv_HAS_RDBG,
9  [
10    if test -d "$srcdir/${RTEMS_TOPdir}/c/src/lib/librdbg/${RTEMS_CPU}/${$1}"; then
11      rtems_cv_HAS_RDBG="yes" ;
12    else
13      rtems_cv_HAS_RDBG="no";
14    fi
15  ])
16HAS_RDBG="$rtems_cv_HAS_RDBG"
17AC_SUBST(HAS_RDBG)
18])
Note: See TracBrowser for help on using the repository browser.