source: rtems/cpukit/libmisc/configure.ac @ ea02247c

4.104.114.84.95
Last change on this file since ea02247c was ea02247c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/10/02 at 11:27:05

2002-12-10 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[d7aecdc]1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
[be2cd08]6AC_INIT([rtems-c-src-libmisc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
[d7aecdc]7AC_CONFIG_SRCDIR([dumpbuf])
8RTEMS_TOP(../../..)
9AC_CONFIG_AUX_DIR(../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
[be2cd08]13AM_INIT_AUTOMAKE([no-define foreign 1.6])
[d7aecdc]14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_BARE
17
18RTEMS_ENV_RTEMSBSP
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROJECT_ROOT
23
24RTEMS_PROG_CC_FOR_TARGET
25RTEMS_CANONICALIZE_TOOLS
26
27RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
28
29AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
30
[22b689b]31# shell/* wants to assign file descriptors to stdio file descriptors.
32AC_MSG_CHECKING([for assignable stdio])
33AC_COMPILE_IFELSE(
34  [AC_LANG_PROGRAM(
35    [#include <stdio.h>],
36    [stdin = fopen("/tmp", "r")])],
37  [HAVE_ASSIGNABLE_STDIO=yes],
38  [HAVE_ASSIGNABLE_STDIO=no])
39AC_MSG_RESULT([$HAVE_ASSIGNABLE_STDIO])
40
41AM_CONDITIONAL([RTEMS_LIBSHELL],[test x"$HAVE_ASSIGNABLE_STDIO" = x"yes"])
42
[d7aecdc]43# Explicitly list all Makefiles here
44AC_CONFIG_FILES([Makefile
45cpuuse/Makefile
46shell/Makefile
47devnull/Makefile
48dummy/Makefile
49dumpbuf/Makefile
50monitor/Makefile
51rtmonuse/Makefile
[9e633f5]52serdbg/Makefile
[d7aecdc]53stackchk/Makefile
[a923a82]54capture/Makefile
[d7aecdc]55untar/Makefile
56mw-fb/Makefile
57wrapup/Makefile
58])
59AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.