summaryrefslogtreecommitdiffstats
path: root/aclocal/bsp-arg-enable.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-08-21 05:37:41 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-08-21 05:37:41 +0000
commit8ad16bac296cf446a9473041c9c6fd4a25fed038 (patch)
tree7ccb4b8454d2117fd0ff989213cbbcd58234c0fd /aclocal/bsp-arg-enable.m4
parent2003-08-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8ad16bac296cf446a9473041c9c6fd4a25fed038.tar.bz2
2003-08-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-arg-enable.m4, aclocal/bsp-configure.m4, aclocal/bspopts.m4, aclocal/canonicalize-tools.m4, aclocal/check-bsp-cache.m4, aclocal/check-cxx.m4, aclocal/check-itron.m4, aclocal/check-multiprocessing.m4, aclocal/check-networking.m4, aclocal/check-newlib.m4, aclocal/check-posix.m4, aclocal/check-rdbg.m4, aclocal/check-tool.m4, aclocal/env-rtemsbsp.m4, aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4, aclocal/gcc-specs.m4, aclocal/i386-gas-code16.m4, aclocal/path-perl.m4, aclocal/ppc.m4, aclocal/prog-cc.m4, aclocal/prog-ccas.m4, aclocal/prog-cxx.m4, aclocal/prog-gnat.m4, aclocal/rtems-debug.m4, aclocal/rtems-flags.m4, aclocal/rtems-test-no-pause.m4, aclocal/target.m4: Remove (Unused). * automake/leaf.am, automake/force-preinstall.am: Remove (Unused). * Makefile.am: Reflect changes above.
Diffstat (limited to 'aclocal/bsp-arg-enable.m4')
-rw-r--r--aclocal/bsp-arg-enable.m418
1 files changed, 0 insertions, 18 deletions
diff --git a/aclocal/bsp-arg-enable.m4 b/aclocal/bsp-arg-enable.m4
deleted file mode 100644
index 91972a5303..0000000000
--- a/aclocal/bsp-arg-enable.m4
+++ /dev/null
@@ -1,18 +0,0 @@
-dnl $Id$
-dnl
-dnl RTEMS_BSP_ARG_ENABLE(FEATURE, HELP-STRING, ACTION-IF-TRUE [, ACTION-IF-FALSE])
-dnl
-dnl Accept --enable-FEATURE=<RTEMS_BSP>:<bsp-value> and
-dnl --enable-FEATURE=<value> in BSP-configure scripts.
-dnl
-dnl Configure scripts will receive <bsp-value> if <RTEMS_BSP> matches the
-dnl actual value of the shell variable RTEMS_BSP (cf. RTEMS_ENV_RTEMSBSP),
-dnl and the raw value passed to --enable-FEATURE otherwise.
-dnl
-AC_DEFUN(RTEMS_BSP_ARG_ENABLE,
-[AC_REQUIRE([RTEMS_ENV_RTEMSBSP])
-AC_ARG_ENABLE([$1],[$2],
-[enableval=`echo "[$enable_]patsubst([$1], -, _)" | sed -e "s%^${RTEMS_BSP}:%%"`
- eval "[enable_]patsubst([$1], -, _)='$enableval'"
-$3],[$4])
-])