summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-01-05 17:57:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-01-05 17:57:05 +0000
commitc58ba4159ade9347c22146aeafebb20e428d4a37 (patch)
treeb3e5c2411176b6893c5ad47f770bf0ac60e55459 /c
parent2005-01-05 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-c58ba4159ade9347c22146aeafebb20e428d4a37.tar.bz2
2005-01-05 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/rtems-flags.new: New (moved from ../aclocal).
Diffstat (limited to 'c')
-rw-r--r--c/src/make/ChangeLog4
-rw-r--r--c/src/make/aclocal/rtems-flags.m411
2 files changed, 15 insertions, 0 deletions
diff --git a/c/src/make/ChangeLog b/c/src/make/ChangeLog
index 076fb0c370..94e32cef22 100644
--- a/c/src/make/ChangeLog
+++ b/c/src/make/ChangeLog
@@ -1,3 +1,7 @@
+2005-01-05 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * aclocal/rtems-flags.new: New (moved from ../aclocal).
+
2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/enable-itron.m4: New (moved from ../aclocal).
diff --git a/c/src/make/aclocal/rtems-flags.m4 b/c/src/make/aclocal/rtems-flags.m4
new file mode 100644
index 0000000000..8e034e52c2
--- /dev/null
+++ b/c/src/make/aclocal/rtems-flags.m4
@@ -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])
+])