source: rtems/testsuites/psxtmtests/configure.ac @ 76bd25e

5
Last change on this file since 76bd25e was 6e98ea91, checked in by Gedare Bloom <gedare@…>, on 06/09/16 at 15:40:35

posix: add clock_nanosleep and tests

updates #2732

  • Property mode set to 100644
File size: 3.8 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-psxtmtests],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([psxtmmutex02])
6RTEMS_TOP([../..],[..])
7
8RTEMS_CANONICAL_TARGET_CPU
9
10AM_INIT_AUTOMAKE([no-define foreign 1.12.2])
11AM_MAINTAINER_MODE
12
13RTEMS_ENV_RTEMSBSP
14
15RTEMS_PROJECT_ROOT
16
17RTEMS_PROG_CC_FOR_TARGET
18
19RTEMS_CANONICALIZE_TOOLS
20
21RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
22AC_CONFIG_HEADER([config.h])
23
24RTEMS_CHECK_CPUOPTS([RTEMS_POSIX_API])
25AM_CONDITIONAL(HAS_POSIX,test x"${rtems_cv_RTEMS_POSIX_API}" = x"yes")
26
27# but newlib doesn't have sys/mman.h
28AC_CHECK_HEADERS([sys/mman.h])
29
30# FIXME: newlib should supply declaration of pthread_rwlock_unlock()
31AC_CHECK_DECLS([pthread_rwlock_unlock],[],[],[[#include <pthread.h>]])
32
33# FIXME: newlib should supply declaration of pthread_atfork()
34AC_CHECK_DECLS([pthread_atfork],[],[],[[#include <pthread.h>]])
35
36# FIXME: RTEMS presumes pthread_attr_getcputime to be IEEE Std 1003.1
37# Likely an anachronism in RTEMS.
38AC_CHECK_DECLS([pthread_attr_getcputime],[],[],[[#include <pthread.h>]])
39
40# FIXME: RTEMS presumes pthread_attr_getcputime to be IEEE Std 1003.1
41# Likely an anachronism in RTEMS.
42AC_CHECK_DECLS([pthread_attr_getcputime],[],[],[[#include <pthread.h>]])
43
44# FIXME: RTEMS presumes pthread_attr_setcputime to be IEEE Std 1003.1
45# Likely an anachronism in RTEMS.
46AC_CHECK_DECLS([pthread_attr_setcputime],[],[],[[#include <pthread.h>]])
47
48# Added to pthreads after initial revision.  May not be in toolset
49AC_CHECK_DECLS([pthread_attr_getstack],[],[],[[#include <pthread.h>]])
50
51# Added to pthreads after initial revision.  May not be in toolset
52AC_CHECK_DECLS([pthread_attr_setstack],[],[],[[#include <pthread.h>]])
53
54# Added to pthreads after initial revision.  May not be in toolset
55AC_CHECK_DECLS([pthread_attr_getguardsize],[],[],[[#include <pthread.h>]])
56
57# Added to pthreads after initial revision.  May not be in toolset
58AC_CHECK_DECLS([pthread_attr_setguardsize],[],[],[[#include <pthread.h>]])
59
60# FIXME: adjtime is a non-standardized BSD/Linux extension
61# RTEMS should not rely on adjtime
62AC_CHECK_DECLS([adjtime],[],[],[[#include <sys/time.h>]])
63
64# FIXME: IEEE Std 1003.1-2008 mandates mprotect in sys/mman.h,
65# RTEMS provides a stub, despite newlib doesn't have sys/mman.h
66AC_CHECK_DECLS([mprotect],[],[],[[#include <sys/mman.h>]])
67
68# FIXME: IEEE Std 1003.1-2008 mandates seteuid in unistd.h
69# RTEMS provides it, despite newlib doesn't declare it.
70AC_CHECK_DECLS([seteuid],[],[],[#include <unistd.h>])
71
72# FIXME: We should get rid of this. It's a cludge.
73AC_CHECK_SIZEOF([off_t])
74
75OPERATION_COUNT=${OPERATION_COUNT-100}
76AC_SUBST(OPERATION_COUNT)
77
78# Explicitly list all Makefiles here
79AC_CONFIG_FILES([Makefile
80psxtmbarrier01/Makefile
81psxtmbarrier02/Makefile
82psxtmbarrier03/Makefile
83psxtmbarrier04/Makefile
84psxtmclocknanosleep01/Makefile
85psxtmclocknanosleep02/Makefile
86psxtmclocknanosleep03/Makefile
87psxtmcond01/Makefile
88psxtmcond02/Makefile
89psxtmcond03/Makefile
90psxtmcond04/Makefile
91psxtmcond05/Makefile
92psxtmcond06/Makefile
93psxtmcond07/Makefile
94psxtmcond08/Makefile
95psxtmcond09/Makefile
96psxtmcond10/Makefile
97psxtmkey01/Makefile
98psxtmkey02/Makefile
99psxtmmq01/Makefile
100psxtmmutex01/Makefile
101psxtmmutex02/Makefile
102psxtmmutex03/Makefile
103psxtmmutex04/Makefile
104psxtmmutex05/Makefile
105psxtmmutex06/Makefile
106psxtmmutex07/Makefile
107psxtmnanosleep01/Makefile
108psxtmnanosleep02/Makefile
109psxtmrwlock01/Makefile
110psxtmrwlock02/Makefile
111psxtmrwlock03/Makefile
112psxtmrwlock04/Makefile
113psxtmrwlock05/Makefile
114psxtmrwlock06/Makefile
115psxtmrwlock07/Makefile
116psxtmsem01/Makefile
117psxtmsem02/Makefile
118psxtmsem03/Makefile
119psxtmsem04/Makefile
120psxtmsem05/Makefile
121psxtmsleep01/Makefile
122psxtmsleep02/Makefile
123psxtmthread01/Makefile
124psxtmthread02/Makefile
125psxtmthread03/Makefile
126psxtmthread04/Makefile
127psxtmthread05/Makefile
128psxtmthread06/Makefile
129])
130AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.