swh:1:snp:2d869aa00591d2ac8ec8e7abacdda563d413189d
Tip revision: 99d9d23e80e3bdd196ea0eda76e60b51423416c7 authored by Jeremie Dimino on 26 October 2016, 10:14:13 UTC
Only wait for the children started by parmap
Only wait for the children started by parmap
Tip revision: 99d9d23
configure.ac
AC_INIT(parmap, 1.0-rc7, roberto@dicosmo.org)
AC_PROG_OCAML
if test "$OCAMLC" = "no"; then
AC_MSG_ERROR([You must install the OCaml compiler])
fi
AC_PROG_FINDLIB
AC_SUBST(OCAMLFIND)
if test "$OCAMLFIND" = "no"; then
AC_MSG_ERROR([You must install OCaml findlib (the ocamlfind command)])
fi
AC_HEADER_STDC
AC_CHECK_HEADERS([sched.h])
AC_CHECK_DECLS([sched_setaffinity], [], [], [[
#define _GNU_SOURCE 1
#include <sched.h>
]])
AC_CHECK_HEADERS([mach/thread_policy.h])
AC_CHECK_DECLS([thread_policy_set], [], [], [[
#include <mach/mach_init.h>
#include <mach/thread_policy.h>
]])
AC_CONFIG_HEADERS([config.h])
if $OCAMLBUILD -use-ocamlfind >/dev/null 2>&1 ; then
AC_MSG_RESULT(ocaml version $OCAMLVERSION. Use standard Makefile)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
else
AC_MSG_RESULT(ocamlbuild does not exists or it does not support -use-ocamlfind)
AC_CONFIG_FILES([Makefile_3.11])
AC_OUTPUT
mv Makefile_3.11 Makefile
fi