summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-08-18 12:00:25 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-08-18 12:00:25 +0000
commit161f265159bbac09922ef0eb5d559767ab35af51 (patch)
tree43e7b0581bf8229e217990caaea500adec0c1dbb /c
parent2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-161f265159bbac09922ef0eb5d559767ab35af51.tar.bz2
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/check-itron.m4: Remove. * aclocal/enable-inlines.m4: Remove.
Diffstat (limited to 'c')
-rw-r--r--c/src/ChangeLog5
-rw-r--r--c/src/aclocal/check-itron.m437
-rw-r--r--c/src/aclocal/enable-inlines.m417
3 files changed, 5 insertions, 54 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index d95b18cc55..2d1e5ab234 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,10 @@
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * aclocal/check-itron.m4: Remove.
+ * aclocal/enable-inlines.m4: Remove.
+
+2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* Makefile.am: Reflect having moved aclocal/.
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
diff --git a/c/src/aclocal/check-itron.m4 b/c/src/aclocal/check-itron.m4
deleted file mode 100644
index 4c4dbf0042..0000000000
--- a/c/src/aclocal/check-itron.m4
+++ /dev/null
@@ -1,37 +0,0 @@
-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 CPU 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
-])
-
-AC_DEFUN(RTEMS_DEFINE_ITRON_API,
-[AC_REQUIRE([RTEMS_CHECK_ITRON_API])dnl
-if test x"${HAS_ITRON_API}" = x"yes";
-then
- AC_DEFINE_UNQUOTED(RTEMS_ITRON_API,1,[if itron api is supported])
-fi
-])
diff --git a/c/src/aclocal/enable-inlines.m4 b/c/src/aclocal/enable-inlines.m4
deleted file mode 100644
index 4e0eb80d24..0000000000
--- a/c/src/aclocal/enable-inlines.m4
+++ /dev/null
@@ -1,17 +0,0 @@
-dnl $Id$
-
-AC_DEFUN(RTEMS_ENABLE_INLINES,
-[AC_ARG_ENABLE(rtems-inlines,
-[AC_HELP_STRING([--enable-rtems-inlines],
-[enable RTEMS inline functions (default:enabled, disable to use macros)])],
-[case "${enableval}" in
- yes) RTEMS_USE_MACROS=no ;;
- no) RTEMS_USE_MACROS=yes ;;
- *) AC_MSG_ERROR(bad value ${enableval} for disable-rtems-inlines option) ;;
-esac],[RTEMS_USE_MACROS=no])
-AC_SUBST(RTEMS_USE_MACROS)dnl
-
-AS_IF([test x"${RTEMS_USE_MACROS}" = x"yes"],
- [AC_DEFINE_UNQUOTED(USE_MACROS,1,[if using macros])],
- [AC_DEFINE_UNQUOTED(USE_INLINES,1,[if using inlines])])
-])