source: rtems/testsuites/libtests/configure.ac @ 83f7fd6

4.115
Last change on this file since 83f7fd6 was 83f7fd6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/10/11 at 05:15:01

2011-01-10 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Use ac_cv_header_complex_h.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.60)
6AC_INIT([rtems-c-src-tests-libtests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([cpuuse])
8RTEMS_TOP([../..],[..])
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign 1.10])
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_CXX
16
17RTEMS_ENV_RTEMSBSP
18RTEMS_CHECK_RTEMS_TEST_NO_PAUSE
19
20RTEMS_PROJECT_ROOT
21
22RTEMS_PROG_CC_FOR_TARGET
23
24RTEMS_PROG_CXX_FOR_TARGET
25
26RTEMS_CANONICALIZE_TOOLS
27
28RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
29RTEMS_CHECK_CXX(RTEMS_BSP)
30
31AC_PROG_LN_S
32AC_PATH_PROG([PAX],[pax])
33
34AC_CHECK_HEADERS([complex.h])
35
36AM_CONDITIONAL(TARTESTS,test "$as_ln_s" = "ln -s" && test -n "$PAX")
37
38AM_CONDITIONAL(HAS_CXX,test "$rtems_cv_HAS_CPLUSPLUS" = "yes")
39AM_CONDITIONAL([HAS_COMPLEX],[test "$ac_cv_header_complex_h" = yes])
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile
43block01/Makefile
44block02/Makefile
45block03/Makefile
46block04/Makefile
47block05/Makefile
48block06/Makefile
49block07/Makefile
50block08/Makefile
51block09/Makefile
52block10/Makefile
53bspcmdline01/Makefile
54cpuuse/Makefile
55devfs01/Makefile
56devfs02/Makefile
57devfs03/Makefile
58devfs04/Makefile
59deviceio01/Makefile
60devnullfatal01/Makefile
61dumpbuf01/Makefile
62gxx01/Makefile
63heapwalk/Makefile
64malloctest/Makefile
65malloc02/Makefile
66malloc03/Makefile
67malloc04/Makefile
68malloc05/Makefile
69monitor/Makefile
70monitor02/Makefile
71putenvtest/Makefile
72rtems++/Makefile
73rtmonuse/Makefile
74stackchk/Makefile
75stackchk01/Makefile
76stringto01/Makefile
77tar01/Makefile
78tar02/Makefile
79tar03/Makefile
80termios/Makefile
81termios01/Makefile
82termios02/Makefile
83termios03/Makefile
84termios04/Makefile
85termios05/Makefile
86termios06/Makefile
87termios07/Makefile
88termios08/Makefile
89tztest/Makefile
90POSIX/Makefile
91math/Makefile
92complex/Makefile
93])
94AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.