X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=755c339d8639599478729c0d40dd298aab8144c1;hb=bb4a32c13b7a0b6f3148cff075c7b9176ce14020;hp=d0dcf829d7cc4222a462c436128c1c3a9a3b871c;hpb=55c3a7d9b2bffa53b519be5a319565e311f8d7e6;p=goaljobs.git diff --git a/configure.ac b/configure.ac index d0dcf82..755c339 100644 --- a/configure.ac +++ b/configure.ac @@ -82,6 +82,12 @@ if test "x$OCAMLFIND" = "xno"; then AC_MSG_ERROR([You must install OCaml findlib (the ocamlfind command)]) fi +dnl OCaml calendar library is required. +AC_CHECK_OCAML_PKG(calendar) +if test "x$OCAML_PKG_calendar" = "xno"; then + AC_MSG_ERROR([You must install OCaml calendar library version 2]) +fi + dnl Check for curl (for URL testing, downloads). AC_CHECK_PROG(CURL,curl,curl) if test "x$CURL" = "x"; then @@ -91,7 +97,7 @@ fi dnl Check for POD (for manual pages). AC_CHECK_PROG(PERLDOC,perldoc,perldoc) if test "x$PERLDOC" = "x"; then - AC_MSG_ERROR([You must install the perldoc program]) + AC_MSG_ERROR([You must install the 'perldoc' program]) fi AC_CONFIG_HEADERS([config.h])