Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the Acmacro directory.
[simgrid.git] / acmacro / context.m4
diff --git a/acmacro/context.m4 b/acmacro/context.m4
deleted file mode 100644 (file)
index d0836c1..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-dnl AC_CHECK_UCONTEXT: Check whether ucontext are working
-
-dnl it uses AC_RUN and assume the worse while cross-compiling
-
-AC_DEFUN([AC_CHECK_UCONTEXT],
- [
-AC_MSG_CHECKING([whether ucontext'es exist and are usable...])
-AC_RUN_IFELSE(AC_LANG_PROGRAM([#include <ucontext.h>],
-                              [ucontext_t uc; 
-                              if (getcontext (&uc) != 0) return -1;
-                             ]),
-             AC_MSG_RESULT(yes)
-             ac_check_ucontext=yes,
-             AC_MSG_RESULT(no)
-             ac_check_ucontext=no,
-             AC_MSG_RESULT(assuming the worse in cross-compilation)
-             ac_check_ucontext=no)
-])