summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--ChangeLog4
-rw-r--r--aclocal/rtems-flags.m411
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/aclocal/rtems-flags.m411
4 files changed, 30 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bf241bd4f4..0b67bbdc3e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/aclocal/rtems-flags.m4 b/aclocal/rtems-flags.m4
new file mode 100644
index 0000000000..8e034e52c2
--- /dev/null
+++ b/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])
+])
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 0fd3d11615..6279d0fb45 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -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).
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])
+])