Changeset 1bcbe41 in rtems for cpukit/acinclude.m4


Ignore:
Timestamp:
11/27/03 14:36:23 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
7cdf8b7e
Parents:
69a6204c
Message:

2003-11-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: Use here-documents to generate cpuopts.tmp. Various fixes and changes to argument processing. Reflect changes to librpc Makefile.ams.
  • acinclude.m4: Use here-documents to generate cpuopts.tmp.
  • aclocal/check-itron.m4: Remove HAS_IRON_API.
  • aclocal/check-multiprocessing.m4: Remove HAS_MP.
  • aclocal/check-posix.m4: Remove HAS_POSIX_API.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/acinclude.m4

    r69a6204c r1bcbe41  
    33AC_DEFUN([RTEMS_CPUOPT],
    44[
    5   echo >> cpuopts.tmp
    6   echo "/* $4 */" >> cpuopts.tmp
    75  if $2; then
    8     echo "#define $1 $3" >> cpuopts.tmp
     6cat >>cpuopts.tmp <<\_ACEOF
     7
     8/* $4 */
     9#define $1 $3
     10_ACEOF
     11## FIXME: Duplicate the define to the autoheader
     12## Sanity check - Should be removed in future
     13    AC_DEFINE([$1],[$3],[$4])
    914  else
    10     echo "/* #undef $1 */" >> cpuopts.tmp
    11   fi
     15cat >>cpuopts.tmp <<\_ACEOF
     16
     17/* $4 */
     18/* #undef $1 */
     19_ACEOF
     20  fi
    1221])
Note: See TracChangeset for help on using the changeset viewer.