source: rtems/testsuites/libtests/configure.ac @ 893aac16

4.115
Last change on this file since 893aac16 was 390e987e, checked in by Sebastian Huber <sebastian.huber@…>, on 09/16/13 at 08:43:30

libblock: PR2145: Limit maximum read-ahead blocks

This helps to prevent stack overflows due to configuration errors.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-libtests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([cpuuse])
6AC_CONFIG_HEADER([config.h])
7RTEMS_TOP([../..],[..])
8
9RTEMS_CANONICAL_TARGET_CPU
10
11AM_INIT_AUTOMAKE([no-define foreign 1.12.2])
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_CXX
15
16RTEMS_ENV_RTEMSBSP
17RTEMS_CHECK_RTEMS_TEST_NO_PAUSE
18
19RTEMS_PROJECT_ROOT
20
21RTEMS_PROG_CC_FOR_TARGET
22
23RTEMS_PROG_CXX_FOR_TARGET
24
25RTEMS_CANONICALIZE_TOOLS
26
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_CXX(RTEMS_BSP)
29RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
30RTEMS_CHECK_CPUOPTS([RTEMS_POSIX_API])
31
32AC_PROG_LN_S
33AC_PATH_PROG([PAX],[pax])
34
35AC_CHECK_HEADERS([complex.h])
36
37AM_CONDITIONAL(TARTESTS,test "$as_ln_s" = "ln -s" && test -n "$PAX")
38
39AM_CONDITIONAL(HAS_CXX,test "$rtems_cv_HAS_CPLUSPLUS" = "yes")
40AM_CONDITIONAL([HAS_COMPLEX],[test "$ac_cv_header_complex_h" = yes])
41AM_CONDITIONAL(NETTESTS,test "$rtems_cv_RTEMS_NETWORKING" = "yes")
42AM_CONDITIONAL(HAS_POSIX,test x"${rtems_cv_RTEMS_POSIX_API}" = x"yes")
43
44# Explicitly list all Makefiles here
45AC_CONFIG_FILES([Makefile
46block17/Makefile
47exit02/Makefile
48exit01/Makefile
49utf8proc01/Makefile
50md501/Makefile
51sparsedisk01/Makefile
52block16/Makefile
53mghttpd01/Makefile
54block15/Makefile
55block14/Makefile
56block13/Makefile
57rbheap01/Makefile
58syscall01/Makefile
59flashdisk01/Makefile
60block01/Makefile
61block02/Makefile
62block03/Makefile
63block04/Makefile
64block05/Makefile
65block06/Makefile
66block07/Makefile
67block08/Makefile
68block09/Makefile
69block10/Makefile
70block11/Makefile
71block12/Makefile
72bspcmdline01/Makefile
73cpuuse/Makefile
74devfs01/Makefile
75devfs02/Makefile
76devfs03/Makefile
77devfs04/Makefile
78deviceio01/Makefile
79devnullfatal01/Makefile
80dumpbuf01/Makefile
81ftp01/Makefile
82gxx01/Makefile
83heapwalk/Makefile
84malloctest/Makefile
85malloc02/Makefile
86malloc03/Makefile
87malloc04/Makefile
88malloc05/Makefile
89monitor/Makefile
90monitor02/Makefile
91mouse01/Makefile
92putenvtest/Makefile
93rtems++/Makefile
94rtmonuse/Makefile
95stackchk/Makefile
96stackchk01/Makefile
97stringto01/Makefile
98tar01/Makefile
99tar02/Makefile
100tar03/Makefile
101termios/Makefile
102termios01/Makefile
103termios02/Makefile
104termios03/Makefile
105termios04/Makefile
106termios05/Makefile
107termios06/Makefile
108termios07/Makefile
109termios08/Makefile
110tztest/Makefile
111POSIX/Makefile
112math/Makefile
113mathf/Makefile
114mathl/Makefile
115complex/Makefile
116])
117AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.