From a0d70c88b6d64749e8ea75a963437ef7f86465dc Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Fri, 10 Apr 2026 08:52:35 +0200 Subject: [PATCH] configure.ac: show message that building vvp library is enabled --- configure.ac | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cc817a69c..f21efedd9 100644 --- a/configure.ac +++ b/configure.ac @@ -204,7 +204,16 @@ AC_FUNC_FSEEKO # Build VVP as a library and stub AC_ARG_ENABLE([libvvp], [AS_HELP_STRING([--enable-libvvp], [build VVP as a shared library])], - [AC_SUBST(LIBVVP, yes)],[]) + [enable_libvvp=yes], + [enable_libvvp=no]) + +AC_SUBST([LIBVVP], [$enable_libvvp]) + +AS_IF([test "x$enable_libvvp" = "xyes"], [ + AC_MSG_NOTICE([libvvp support enabled]) +], [ + AC_MSG_NOTICE([libvvp support disabled]) +]) AC_ARG_ENABLE([libveriuser], [AS_HELP_STRING([--enable-libveriuser], [include support for PLI 1 (deprecated)])],