2007-02-07 Ralf Corsépius <ralf.corsepius@rtems.org>

* configure.ac: Check fo intmax_t, uintptr_t, intptr_t,
	pthread.h, pthread_rwlock_t, pthread_barrier_t, pthread_spinlock_t.
This commit is contained in:
Ralf Corsepius
2007-02-07 03:36:52 +00:00
parent 64e442a227
commit 9a673dbaa8
2 changed files with 17 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2007-02-07 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Check fo intmax_t, uintptr_t, intptr_t,
pthread.h, pthread_rwlock_t, pthread_barrier_t, pthread_spinlock_t.
2007-02-06 Till Straumann <strauman@slac.stanford.edu>
* libcsupport/src/gxx_wrappers.c: fix PR#690. Supply

View File

@@ -2,7 +2,7 @@
##
## $Id$
AC_PREREQ(2.60)
AC_PREREQ(2.61)
AC_INIT([rtems-cpukit],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
AC_CONFIG_SRCDIR([score])
RTEMS_TOP([..],[])
@@ -72,7 +72,17 @@ AC_CHECK_TYPES([ uint8_t, int8_t])
AC_CHECK_TYPES([uint16_t, int16_t])
AC_CHECK_TYPES([uint32_t, int32_t])
AC_CHECK_TYPES([uint64_t, int64_t])
AC_CHECK_TYPES([uintmax_t])
AC_CHECK_TYPES([uintmax_t, intmax_t])
AC_CHECK_TYPES([uintptr_t, intptr_t])
# These are conditionally defined by the toolchain
# FIXME: we should either conditionally compile those parts in
# RTEMS depending on them, or abort - For now, simply check.
AC_CHECK_HEADER([pthread.h],[
AC_CHECK_TYPES([pthread_rwlock_t])
AC_CHECK_TYPES([pthread_barrier_t])
AC_CHECK_TYPES([pthread_spinlock_t])
])
RTEMS_CHECK_MULTIPROCESSING
RTEMS_CHECK_POSIX_API