2011-01-28 Ralf Corsépius <ralf.corsepius@rtems.org>

* configure.ac: Remove RTEMS_PATH_KSH (Unused).
	Require autoconf >= 2.68, automake >= 1.11.1.
	Add AC_PROG_CC_C99 to enforce c99 hoping this will suffice to make
	this stuff compilable with older GCCs (works on some hosts).
This commit is contained in:
Ralf Corsepius
2011-01-29 07:07:00 +00:00
parent 511a00e2ff
commit fb1d445e5e
2 changed files with 14 additions and 5 deletions
+7
View File
@@ -1,3 +1,10 @@
2011-01-28 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Remove RTEMS_PATH_KSH (Unused).
Require autoconf >= 2.68, automake >= 1.11.1.
Add AC_PROG_CC_C99 to enforce c99 hoping this will suffice to make
this stuff compilable with older GCCs (works on some hosts).
2010-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
Jennifer Averett <jennifer.averett@oarcorp.com>
+7 -5
View File
@@ -2,22 +2,24 @@
##
## $Id$
AC_PREREQ(2.60)
AC_PREREQ(2.68)
AC_INIT([rtems-tools-schedsim],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
AC_CONFIG_SRCDIR([rtems])
RTEMS_TOP(../..)
RTEMS_CANONICAL_TARGET_CPU
AM_INIT_AUTOMAKE([no-define foreign 1.10])
AM_INIT_AUTOMAKE([no-define foreign 1.11.1])
AM_MAINTAINER_MODE
RTEMS_PATH_KSH
AC_PROG_RANLIB
AC_PROG_CC
# FIXME: Hack to enforce gnu99 on systems with GCC which do not default to gnu99
AC_PROG_CC_C99
AC_PROG_CXX
# FIXME: Should abort if c99 or c++ are not available.
# FIXME: Should abort on systems without GCC.
# FIXME: This package is not a tool, it's a separate, hacked up RTEMS port
RTEMS_TOOLPATHS
AC_SUBST(program_prefix)