From fb1d445e5eb93397c688da43085e9259d2f7bcc2 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 29 Jan 2011 07:07:00 +0000 Subject: =?UTF-8?q?2011-01-28=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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). --- tools/schedsim/configure.ac | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'tools/schedsim/configure.ac') diff --git a/tools/schedsim/configure.ac b/tools/schedsim/configure.ac index e4c3bb660b..19f9cf81f7 100644 --- a/tools/schedsim/configure.ac +++ b/tools/schedsim/configure.ac @@ -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) -- cgit v1.2.3