Changeset a1ca28d in rtems
- Timestamp:
- Nov 22, 2004, 1:52:17 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 51dc9b51
- Parents:
- 98031ea
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r98031ea ra1ca28d 1 2004-11-22 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * aclocal/enable-itron.m4, aclocal/check-itron.m4: 4 Allow building itron for unix. 5 1 6 2004-11-22 Ralf Corsepius <ralf.corsepius@rtems.org> 2 7 -
cpukit/aclocal/check-itron.m4
r98031ea ra1ca28d 3 3 AC_DEFUN([RTEMS_CHECK_ITRON_API], 4 4 [dnl 5 AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl6 5 AC_REQUIRE([RTEMS_ENABLE_ITRON])dnl 7 6 … … 9 8 rtems_cv_HAS_ITRON_API, 10 9 [dnl 11 case "$RTEMS_CPU" in12 unix*)13 rtems_cv_HAS_ITRON_API="no"14 ;;15 *)16 10 if test "${RTEMS_HAS_ITRON_API}" = "yes"; then 17 11 rtems_cv_HAS_ITRON_API="yes"; … … 19 13 rtems_cv_HAS_ITRON_API="disabled"; 20 14 fi 21 ;; 22 esac]) 15 ]) 23 16 ]) -
cpukit/aclocal/enable-itron.m4
r98031ea ra1ca28d 3 3 AC_DEFUN([RTEMS_ENABLE_ITRON], 4 4 [ 5 ## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl6 7 5 AC_ARG_ENABLE(itron, 8 6 AS_HELP_STRING(--enable-itron,enable itron interface), … … 12 10 *) AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;; 13 11 esac],[RTEMS_HAS_ITRON_API=yes]) 14 15 case "${host}" in16 # hpux unix port should go here17 i[[34567]]86-pc-linux*) # unix "simulator" port18 RTEMS_HAS_ITRON_API=no19 ;;20 i[[34567]]86-*freebsd*) # unix "simulator" port21 RTEMS_HAS_ITRON_API=no22 ;;23 no_cpu-*rtems*)24 RTEMS_HAS_ITRON_API=no25 ;;26 sparc-sun-solaris*) # unix "simulator" port27 RTEMS_HAS_ITRON_API=no28 ;;29 *)30 ;;31 esac32 AC_SUBST(RTEMS_HAS_ITRON_API)33 12 ])
Note: See TracChangeset
for help on using the changeset viewer.