summaryrefslogtreecommitdiffstats
path: root/c/src/aclocal/ppc.m4
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/aclocal/ppc.m4')
-rw-r--r--c/src/aclocal/ppc.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/c/src/aclocal/ppc.m4 b/c/src/aclocal/ppc.m4
deleted file mode 100644
index 6beff2a941..0000000000
--- a/c/src/aclocal/ppc.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-# Some hacks for handling powerpc-exception subdirectories
-#
-# Note: Consider this file a temporary band-aid until a better, more general
-# subdirectory handling solution is introduced to RTEMS.
-
-AC_DEFUN([RTEMS_PPC_EXCEPTIONS],
-[
-AC_MSG_CHECKING([for style of powerpc exceptions])
-AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [],
- [#if defined(_OLD_EXCEPTIONS)
- choke me
- #endif])],
- [EXCEPTIONS=new],
- [EXCEPTIONS=old])
-AC_MSG_RESULT([$EXCEPTIONS])
-AC_SUBST([exceptions],[$EXCEPTIONS-exceptions])
-])