2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* aclocal/rtems-flags.m4: New.
This commit is contained in:
Ralf Corsepius
2002-12-06 04:40:18 +00:00
parent 82b1805a1d
commit 8b38a769b8
4 changed files with 30 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/rtems-flags.m4: New.
2002-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* bootstrap: Allow autoconf-2.57.

11
aclocal/rtems-flags.m4 Normal file
View File

@@ -0,0 +1,11 @@
## $Id$
##
## Some hacks to set up RTEMS_*FLAGS
## Internal macro, not supposed to be explictly used in configure.ac's
AC_DEFUN([_RTEMS_FLAGS],[
AS_IF([test -n "[$]{$1}"],
[RTEMS_$1=[$]{$1}],
[RTEMS_$1=$2])
AC_SUBST([RTEMS_$1])
])

View File

@@ -1,3 +1,7 @@
2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/rtems-flags.m4: New.
2002-11-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/compile.am: Remove CFLAGS_DEBUG_OPTIMIZE_V (Unused).

View File

@@ -0,0 +1,11 @@
## $Id$
##
## Some hacks to set up RTEMS_*FLAGS
## Internal macro, not supposed to be explictly used in configure.ac's
AC_DEFUN([_RTEMS_FLAGS],[
AS_IF([test -n "[$]{$1}"],
[RTEMS_$1=[$]{$1}],
[RTEMS_$1=$2])
AC_SUBST([RTEMS_$1])
])