source: rtems/aclocal/check-rdbg.m4 @ 87fad5c

4.104.114.84.95
Last change on this file since 87fad5c was 45269dc, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/99 at 15:34:26

Patch from Ralf Corsepius <corsepiu@…> to move librdbg
to its own top level package.

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