Skip to content
Snippets Groups Projects
Commit 43c3acb8 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[configure] show version of found libraries

parent 10893c2c
No related branches found
No related tags found
No related merge requests found
...@@ -319,7 +319,7 @@ ZARITH=$($OCAMLFIND query zarith -format %v) ...@@ -319,7 +319,7 @@ ZARITH=$($OCAMLFIND query zarith -format %v)
if test -z "$ZARITH" ; then if test -z "$ZARITH" ; then
AC_MSG_ERROR(Cannot find zarith via ocamlfind.) AC_MSG_ERROR(Cannot find zarith via ocamlfind.)
else else
AC_MSG_RESULT(found) AC_MSG_RESULT(found $ZARITH)
fi fi
# yojson # yojson
...@@ -331,6 +331,8 @@ YOJSON=$($OCAMLFIND query yojson -format %v) ...@@ -331,6 +331,8 @@ YOJSON=$($OCAMLFIND query yojson -format %v)
if test -z "$YOJSON" ; then if test -z "$YOJSON" ; then
AC_MSG_ERROR(Cannot find yojson via ocamlfind \ AC_MSG_ERROR(Cannot find yojson via ocamlfind \
(requires yojson 1.4.1 or higher).) (requires yojson 1.4.1 or higher).)
else
AC_MSG_RESULT(found $YOJSON)
fi fi
################################################# #################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment