Implement url_exists, file_contains_string, url_contains_string.
[goaljobs.git] / configure.ac
index 613186d..d0dcf82 100644 (file)
@@ -82,6 +82,12 @@ if test "x$OCAMLFIND" = "xno"; then
     AC_MSG_ERROR([You must install OCaml findlib (the ocamlfind command)])
 fi
 
+dnl Check for curl (for URL testing, downloads).
+AC_CHECK_PROG(CURL,curl,curl)
+if test "x$CURL" = "x"; then
+    AC_MSG_ERROR([You must install the 'curl' program])
+fi
+
 dnl Check for POD (for manual pages).
 AC_CHECK_PROG(PERLDOC,perldoc,perldoc)
 if test "x$PERLDOC" = "x"; then
@@ -89,7 +95,8 @@ if test "x$PERLDOC" = "x"; then
 fi
 
 AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([goaljobs.spec
+AC_CONFIG_FILES([goaljobs_config.ml
+                 goaljobs.spec
                  Makefile
                  META
                  examples/Makefile