summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/check-posix.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2021-11-24 12:03:57 -0600
committerJoel Sherrill <joel@rtems.org>2021-11-29 09:05:10 -0600
commite945e3fc4d6a6a74789c9a348120ec7d06e19231 (patch)
treeada9d52d13385f9b1adc561eadf0adf47f3a112b /cpukit/aclocal/check-posix.m4
parentbsp_specs: Delete last remnants of these. (diff)
downloadrtems-e945e3fc4d6a6a74789c9a348120ec7d06e19231.tar.bz2
*/aclocal/*: Remove remnants of autoconf/automae build system
Updates #4081.
Diffstat (limited to 'cpukit/aclocal/check-posix.m4')
-rw-r--r--cpukit/aclocal/check-posix.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/cpukit/aclocal/check-posix.m4 b/cpukit/aclocal/check-posix.m4
deleted file mode 100644
index ad1d1c87da..0000000000
--- a/cpukit/aclocal/check-posix.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-dnl
-AC_DEFUN([RTEMS_CHECK_POSIX_API],
-[dnl
-AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
-AC_REQUIRE([RTEMS_ENABLE_POSIX])dnl
-
-AC_CACHE_CHECK([whether CPU supports libposix],
- rtems_cv_HAS_POSIX_API,
- [dnl
- case "$host" in
- *-*-rtems*)
- if test "${RTEMS_HAS_POSIX_API}" = "yes"; then
- rtems_cv_HAS_POSIX_API="yes";
- else
- rtems_cv_HAS_POSIX_API="disabled";
- fi
- ;;
- esac])
-])