source: rtems/c/src/librdbg/configure.ac @ f8a73a9

4.104.114.84.95
Last change on this file since f8a73a9 was f8a73a9, checked in by Joel Sherrill <joel.sherrill@…>, on 10/17/01 at 20:29:38

2001-10-17 Ralf Corsepius <corsepiu@…>

  • configure.ac: Fix latent bug exposed by removal of config.cache's which prevented powerpc targets librdbg from building.
  • 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.52)
6AC_INIT
7AC_CONFIG_SRCDIR([src/awk.svc])
8RTEMS_TOP(../../..)
9AC_CONFIG_AUX_DIR(../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE(rtems-c-src-librdbg,$RTEMS_VERSION,no)
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_NETWORKING
17RTEMS_ENABLE_RDBG
18RTEMS_ENABLE_BARE
19
20RTEMS_ENV_RTEMSBSP
21
22RTEMS_CHECK_CPU
23RTEMS_CANONICAL_HOST
24
25RTEMS_PROG_CC_FOR_TARGET
26RTEMS_CANONICALIZE_TOOLS
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)
43RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
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.