source: rtems/c/src/aclocal/ppc.m4 @ f3b29236

5
Last change on this file since f3b29236 was 65c6425, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:24:46

Remove CVS Id Strings (manual edits after script)

These modifications were required by hand after running the script.
In some cases, the file names did not match patterns. In others,
the format of the file did not match any common patterns.

  • Property mode set to 100644
File size: 513 bytes
Line 
1# Some hacks for handling powerpc-exception subdirectories
2#
3# Note: Consider this file a temporary band-aid until a better, more general
4# subdirectory handling solution is introduced to RTEMS.
5
6AC_DEFUN([RTEMS_PPC_EXCEPTIONS],
7[
8AC_MSG_CHECKING([for style of powerpc exceptions])
9AC_COMPILE_IFELSE(
10  [AC_LANG_PROGRAM(
11    [],
12    [#if defined(_OLD_EXCEPTIONS)
13     choke me
14     #endif])],
15  [EXCEPTIONS=new],
16  [EXCEPTIONS=old])
17AC_MSG_RESULT([$EXCEPTIONS])
18AC_SUBST([exceptions],[$EXCEPTIONS-exceptions])
19])
Note: See TracBrowser for help on using the repository browser.