summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/enable-posix.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-09 10:22:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-09 10:22:40 +0000
commit6c362b8b3f3f9234968785ae459ced4a923f1d94 (patch)
treea33c2b085857b3542b045f9ffa4444a7efd57668 /testsuites/aclocal/enable-posix.m4
parent2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-6c362b8b3f3f9234968785ae459ced4a923f1d94.tar.bz2
Remove (Unused).
Diffstat (limited to 'testsuites/aclocal/enable-posix.m4')
-rw-r--r--testsuites/aclocal/enable-posix.m433
1 files changed, 0 insertions, 33 deletions
diff --git a/testsuites/aclocal/enable-posix.m4 b/testsuites/aclocal/enable-posix.m4
deleted file mode 100644
index a5a20152f0..0000000000
--- a/testsuites/aclocal/enable-posix.m4
+++ /dev/null
@@ -1,33 +0,0 @@
-dnl $Id$
-
-AC_DEFUN([RTEMS_ENABLE_POSIX],
-[
-## AC_BEFORE([$0], [RTEMS_CHECK_POSIX_API])dnl
-
-AC_ARG_ENABLE(posix,
-[AS_HELP_STRING(--enable-posix,enable posix interface)],
-[case "${enableval}" in
- yes) RTEMS_HAS_POSIX_API=yes ;;
- no) RTEMS_HAS_POSIX_API=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for enable-posix option) ;;
-esac],[RTEMS_HAS_POSIX_API=yes])
-
-case "${host}" in
- # hpux unix port should go here
- i[[34567]]86-pc-linux*) # unix "simulator" port
- RTEMS_HAS_POSIX_API=no
- ;;
- i[[34567]]86-*freebsd*) # unix "simulator" port
- RTEMS_HAS_POSIX_API=no
- ;;
- no_cpu-*rtems*)
- RTEMS_HAS_POSIX_API=no
- ;;
- sparc-sun-solaris*) # unix "simulator" port
- RTEMS_HAS_POSIX_API=no
- ;;
- *)
- ;;
-esac
-AC_SUBST(RTEMS_HAS_POSIX_API)
-])