Skip to content
Snippets Groups Projects
Commit de5dceac authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

Merge branch 'fix/andre/configure-messages' into 'master'

[configure] show version of found libraries

See merge request frama-c/frama-c!2293
parents 05db1ff8 43c3acb8
No related branches found
No related tags found
No related merge requests found
......@@ -319,7 +319,7 @@ ZARITH=$($OCAMLFIND query zarith -format %v)
if test -z "$ZARITH" ; then
AC_MSG_ERROR(Cannot find zarith via ocamlfind.)
else
AC_MSG_RESULT(found)
AC_MSG_RESULT(found $ZARITH)
fi
# yojson
......@@ -331,6 +331,8 @@ YOJSON=$($OCAMLFIND query yojson -format %v)
if test -z "$YOJSON" ; then
AC_MSG_ERROR(Cannot find yojson via ocamlfind \
(requires yojson 1.4.1 or higher).)
else
AC_MSG_RESULT(found $YOJSON)
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