Changeset 1bcbe41 in rtems for cpukit/acinclude.m4
- Timestamp:
- 11/27/03 14:36:23 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7cdf8b7e
- Parents:
- 69a6204c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/acinclude.m4
r69a6204c r1bcbe41 3 3 AC_DEFUN([RTEMS_CPUOPT], 4 4 [ 5 echo >> cpuopts.tmp6 echo "/* $4 */" >> cpuopts.tmp7 5 if $2; then 8 echo "#define $1 $3" >> cpuopts.tmp 6 cat >>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]) 9 14 else 10 echo "/* #undef $1 */" >> cpuopts.tmp 11 fi 15 cat >>cpuopts.tmp <<\_ACEOF 16 17 /* $4 */ 18 /* #undef $1 */ 19 _ACEOF 20 fi 12 21 ])
Note: See TracChangeset
for help on using the changeset viewer.