source: rtems/testsuites/libtests/configure.ac @ 2ee8b15

4.115
Last change on this file since 2ee8b15 was 2ee8b15, checked in by Ralf Kirchner <ralf.kirchner@…>, on 02/26/13 at 12:25:46

libtests: Add new test: utf8proc01

utf8proc is a library for processing UTF-8 encoded Unicode strings.
Some features are Unicode normalization, stripping of default ignorable characters, case folding and detection of grapheme cluster boundaries.
For now utf8proc is intended for normalizing and folding strings for comparison purposes within the UTF-8 support of the FAT file system.
This test will call interface methods of library utf8proc in order to make sure they compiled and linked ok.
The library is third party, thus it should be sufficient for us to make sure we can build it correctly.

  • 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
46exit02/Makefile
47exit01/Makefile
48utf8proc01/Makefile
49md501/Makefile
50sparsedisk01/Makefile
51block16/Makefile
52mghttpd01/Makefile
53block15/Makefile
54block14/Makefile
55block13/Makefile
56rbheap01/Makefile
57syscall01/Makefile
58flashdisk01/Makefile
59block01/Makefile
60block02/Makefile
61block03/Makefile
62block04/Makefile
63block05/Makefile
64block06/Makefile
65block07/Makefile
66block08/Makefile
67block09/Makefile
68block10/Makefile
69block11/Makefile
70block12/Makefile
71bspcmdline01/Makefile
72cpuuse/Makefile
73devfs01/Makefile
74devfs02/Makefile
75devfs03/Makefile
76devfs04/Makefile
77deviceio01/Makefile
78devnullfatal01/Makefile
79dumpbuf01/Makefile
80ftp01/Makefile
81gxx01/Makefile
82heapwalk/Makefile
83malloctest/Makefile
84malloc02/Makefile
85malloc03/Makefile
86malloc04/Makefile
87malloc05/Makefile
88monitor/Makefile
89monitor02/Makefile
90mouse01/Makefile
91putenvtest/Makefile
92rtems++/Makefile
93rtmonuse/Makefile
94stackchk/Makefile
95stackchk01/Makefile
96stringto01/Makefile
97tar01/Makefile
98tar02/Makefile
99tar03/Makefile
100termios/Makefile
101termios01/Makefile
102termios02/Makefile
103termios03/Makefile
104termios04/Makefile
105termios05/Makefile
106termios06/Makefile
107termios07/Makefile
108termios08/Makefile
109tztest/Makefile
110POSIX/Makefile
111math/Makefile
112mathf/Makefile
113mathl/Makefile
114complex/Makefile
115])
116AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.