source: rtems/c/src/librdbg/configure.ac @ 948a069

Last change on this file since 948a069 was 74e2998, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/03 at 14:41:57

2003-08-11 Ralf Corsepius <corsepiu@…>

  • configure.ac: Use rtems-bugs@… as bug report email address.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-librdbg],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([src/awk.svc])
8RTEMS_TOP(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_NETWORKING
16RTEMS_ENABLE_RDBG
17RTEMS_ENABLE_BARE
18
19RTEMS_ENV_RTEMSBSP
20
21RTEMS_CHECK_CPU
22RTEMS_CANONICAL_HOST
23
24RTEMS_PROG_CC_FOR_TARGET
25RTEMS_CANONICALIZE_TOOLS
26RTEMS_PROG_CCAS
27
28AC_CHECK_PROG(RPCGEN,rpcgen,rpcgen,no)
29AC_PROG_AWK
30
31if test "$RPCGEN" = "no"; then
32  AC_MSG_WARN([** missing rpcgen, required to build librdbg **])
33  rpctools="no"
34fi
35if test "$AWK" = "no"; then
36  AC_MSG_WARN([** missing awk, required to build librdbg **])
37  rpctools="no"
38fi
39
40AM_CONDITIONAL(RPCTOOLS, test "$rpctools" != "no")
41
42RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
43
44RTEMS_CHECK_NETWORKING(RTEMS_BSP)
45RTEMS_CHECK_RDBG(RTEMS_BSP)
46
47AM_CONDITIONAL(HAS_RDBG,test "$HAS_RDBG" = "yes")
48
49RTEMS_PROJECT_ROOT
50
51# Explicitly list all Makefiles here
52AC_CONFIG_FILES([Makefile
53include/Makefile
54include/rdbg/Makefile
55include/rdbg/i386/Makefile
56include/rdbg/powerpc/Makefile
57include/rdbg/m68k/Makefile
58src/Makefile
59src/i386/Makefile
60src/i386/any/Makefile
61src/powerpc/Makefile
62src/powerpc/new_exception_processing/Makefile
63src/m68k/Makefile
64src/m68k/any/Makefile
65])
66AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.