aboutsummaryrefslogtreecommitdiff
path: root/configure.ml
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ml')
-rw-r--r--configure.ml9
1 files changed, 3 insertions, 6 deletions
diff --git a/configure.ml b/configure.ml
index 83468f8f34..ffb7c15f5e 100644
--- a/configure.ml
+++ b/configure.ml
@@ -792,12 +792,6 @@ let md5sum =
if arch = "Darwin" then "md5 -q" else "md5sum"
-(** * md5sum command *)
-
-let md5sum =
- if arch = "Darwin" then "md5 -q" else "md5sum"
-
-
(** * Documentation : do we have latex, hevea, ... *)
let check_doc () =
@@ -809,6 +803,9 @@ let check_doc () =
if not !Prefs.withdoc then raise Not_found;
if not (program_in_path "latex") then err "latex";
if not (program_in_path "hevea") then err "hevea";
+ if not (program_in_path "hacha") then err "hacha";
+ if not (program_in_path "fig2dev") then err "fig2dev";
+ if not (program_in_path "convert") then err "convert";
true
with Not_found -> false