configure.ac: show message that building vvp library is enabled

This commit is contained in:
Ralf Habacker 2026-04-10 08:52:35 +02:00
parent 6ab72552c1
commit a0d70c88b6
1 changed files with 10 additions and 1 deletions

View File

@ -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)])],