X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=7b5ec53ab61a5e0b2802ab17c2628ba0b7118c21;hb=defebbd4c75d43ad2d171cccbcc7ed737ff8a035;hp=e3fd9aebbfd0c998ac8ab46910814365cb4f6d97;hpb=00dfdab0481c531b8608a157dc4c4991f319d7f7;p=goals.git diff --git a/configure.ac b/configure.ac index e3fd9ae..7b5ec53 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # Goals -# Copyright (C) 2019 Richard W.M. Jones -# Copyright (C) 2019 Red Hat Inc. +# Copyright (C) 2019-2020 Richard W.M. Jones +# Copyright (C) 2019-2020 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,9 +16,11 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -AC_INIT([goals], [0.1]) +AC_INIT([goals], [0.2]) AC_CONFIG_MACRO_DIR([m4]) +AM_INIT_AUTOMAKE(foreign) dnl Do not quote this parameter. + AC_PROG_INSTALL dnl Check for basic C environment. @@ -29,6 +31,10 @@ AC_PROG_CPP AC_C_PROTOTYPES test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant]) +dnl C headers and functions. +AC_CHECK_HEADERS([sys/sysinfo.h]) +AC_CHECK_FUNCS([get_nprocs]) + dnl Check for basic OCaml environment and findlib. AC_PROG_OCAML if test "x$OCAMLC" = "xno"; then @@ -53,15 +59,20 @@ AC_CHECK_PROG([POD2MAN], [pod2man], [pod2man], [ AC_MSG_ERROR([pod2man tool from Perl is required]) ]) +AC_CHECK_PROG([POD2TEXT], [pod2text], [pod2text], [ + AC_MSG_ERROR([pod2text tool from Perl is required]) +]) + dnl Substitute OCaml flags and packages. AC_SUBST([OCAMLFLAGS], ["-g -safe-string -warn-error CDEFLMPSUVYZX+52-3"]) -AC_SUBST([OCAMLPACKAGES], ["-package str,unix"]) +AC_SUBST([OCAMLPACKAGES], ["-package str,unix,threads -thread"]) dnl Produce output files. AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h]) AC_CONFIG_FILES([run], [chmod +x,-w run]) AC_CONFIG_FILES([Goalfile Makefile + goals.spec src/config.ml]) AC_OUTPUT