git.annexia.org
/
guestfs-browser.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42e2c77
)
configure: Detect camlp4 and bail if not available.
author
Richard W.M. Jones
<rjones@redhat.com>
Mon, 28 Jan 2013 09:56:11 +0000
(09:56 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Mon, 28 Jan 2013 10:30:22 +0000
(10:30 +0000)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
177a166
..
dddaf3c
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-52,6
+52,12
@@
if test "$OCAMLFIND" = "no"; then
AC_MSG_ERROR([You must install OCaml findlib (ocamlfind)])
fi
+dnl Check for camlp4.
+AC_PROG_CAMLP4
+if test "$CAMLP4" = "no"; then
+ AC_MSG_ERROR([You must install the OCaml 'camlp4' preprocessor package])
+fi
+
dnl Check for all OCaml packages.
AC_CHECK_OCAML_PKG([lablgtk2])
if test "$OCAML_PKG_lablgtk2" = "no"; then