From 43c3acb8fe1b35299e5c1acdf50ef5371cb058b7 Mon Sep 17 00:00:00 2001 From: Andre Maroneze <andre.oliveiramaroneze@cea.fr> Date: Wed, 26 Jun 2019 11:27:38 +0200 Subject: [PATCH] [configure] show version of found libraries --- configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 385594f9759..87572894bb9 100644 --- a/configure.in +++ b/configure.in @@ -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 ################################################# -- GitLab