summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-12-06 04:40:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-12-06 04:40:18 +0000
commit8b38a769b883b3439e0900f5e0b34967f419f294 (patch)
tree1a7d83a4dd52be14b46cfe9c539f757699d257c5 /cpukit/aclocal
parent2002-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8b38a769b883b3439e0900f5e0b34967f419f294.tar.bz2
2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/rtems-flags.m4: New.
Diffstat (limited to 'cpukit/aclocal')
-rw-r--r--cpukit/aclocal/rtems-flags.m411
1 files changed, 11 insertions, 0 deletions
diff --git a/cpukit/aclocal/rtems-flags.m4 b/cpukit/aclocal/rtems-flags.m4
new file mode 100644
index 0000000000..8e034e52c2
--- /dev/null
+++ b/cpukit/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])
+])