From c73b8ac27f85ef7bc732b311da28f65e722ee7be Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 9 Nov 1999 22:18:43 +0000 Subject: This patch adds the basic framework for the ITRON 3.0 API implementation for RTEMS. --- aclocal/check-itron.m4 | 29 +++++++++++++++++++++++++++++ aclocal/enable-itron.m4 | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 aclocal/check-itron.m4 create mode 100644 aclocal/enable-itron.m4 (limited to 'aclocal') diff --git a/aclocal/check-itron.m4 b/aclocal/check-itron.m4 new file mode 100644 index 0000000000..e30023b341 --- /dev/null +++ b/aclocal/check-itron.m4 @@ -0,0 +1,29 @@ +dnl $Id$ +dnl +AC_DEFUN(RTEMS_CHECK_ITRON_API, +[dnl +AC_REQUIRE([RTEMS_CHECK_CPU])dnl +AC_REQUIRE([RTEMS_ENABLE_ITRON])dnl + +AC_CACHE_CHECK([whether BSP supports libitron], + rtems_cv_HAS_ITRON_API, + [dnl + case "$RTEMS_CPU" in + unix*) + rtems_cv_HAS_ITRON_API="no" + ;; + *) + if test "${RTEMS_HAS_ITRON_API}" = "yes"; then + rtems_cv_HAS_ITRON_API="yes"; + else + rtems_cv_HAS_ITRON_API="disabled"; + fi + ;; + esac]) +if test "$rtems_cv_HAS_ITRON_API" = "yes"; then + HAS_ITRON_API="yes"; +else + HAS_ITRON_API="no"; +fi +AC_SUBST(HAS_ITRON_API)dnl +]) diff --git a/aclocal/enable-itron.m4 b/aclocal/enable-itron.m4 new file mode 100644 index 0000000000..9ce17c1c72 --- /dev/null +++ b/aclocal/enable-itron.m4 @@ -0,0 +1,36 @@ +dnl $Id$ + +AC_DEFUN(RTEMS_ENABLE_ITRON, +[ +AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl + +AC_ARG_ENABLE(itron, +[ --enable-itron enable itron interface], +[case "${enableval}" in + yes) RTEMS_HAS_ITRON_API=yes ;; + no) RTEMS_HAS_ITRON_API=no ;; + *) AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;; +esac],[RTEMS_HAS_ITRON_API=yes]) +AC_SUBST(RTEMS_HAS_ITRON_API) + +changequote(,)dnl +case "${target}" in + # hpux unix port should go here + i[3456]86-pc-linux*) # unix "simulator" port + RTEMS_HAS_ITRON_API=no + ;; + i[3456]86-*freebsd2*) # unix "simulator" port + RTEMS_HAS_ITRON_API=no + ;; + no_cpu-*rtems*) + RTEMS_HAS_ITRON_API=no + ;; + sparc-sun-solaris*) # unix "simulator" port + RTEMS_HAS_ITRON_API=no + ;; + *) + ;; +esac +changequote([,])dnl +AC_SUBST(RTEMS_HAS_ITRON_API) +]) -- cgit v1.2.3