source: rtems/testsuites/psxtmtests/configure.ac @ 12072880

4.115
Last change on this file since 12072880 was 12072880, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/14 at 09:03:50

Update bug report URL

  • Property mode set to 100644
File size: 3.7 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
84psxtmcond01/Makefile
85psxtmcond02/Makefile
86psxtmcond03/Makefile
87psxtmcond04/Makefile
88psxtmcond05/Makefile
89psxtmcond06/Makefile
90psxtmcond07/Makefile
91psxtmcond08/Makefile
92psxtmcond09/Makefile
93psxtmcond10/Makefile
94psxtmkey01/Makefile
95psxtmkey02/Makefile
96psxtmmq01/Makefile
97psxtmmutex01/Makefile
98psxtmmutex02/Makefile
99psxtmmutex03/Makefile
100psxtmmutex04/Makefile
101psxtmmutex05/Makefile
102psxtmmutex06/Makefile
103psxtmmutex07/Makefile
104psxtmnanosleep01/Makefile
105psxtmnanosleep02/Makefile
106psxtmrwlock01/Makefile
107psxtmrwlock02/Makefile
108psxtmrwlock03/Makefile
109psxtmrwlock04/Makefile
110psxtmrwlock05/Makefile
111psxtmrwlock06/Makefile
112psxtmrwlock07/Makefile
113psxtmsem01/Makefile
114psxtmsem02/Makefile
115psxtmsem03/Makefile
116psxtmsem04/Makefile
117psxtmsem05/Makefile
118psxtmsleep01/Makefile
119psxtmsleep02/Makefile
120psxtmthread01/Makefile
121psxtmthread02/Makefile
122psxtmthread03/Makefile
123psxtmthread04/Makefile
124psxtmthread05/Makefile
125psxtmthread06/Makefile
126])
127AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.