Skip to content

Commit

Permalink
configure.ac: show library type to be built in summary
Browse files Browse the repository at this point in the history
The configure summary now shows whether libcoap is built as shared or
static library.
  • Loading branch information
obgm committed Jul 23, 2020
1 parent b373aec commit e74fc73
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -888,3 +888,13 @@ if test "x$build_gcov" = "xyes"; then
else
AC_MSG_RESULT([ build with gcov support : "no"])
fi
if test "x$enable_shared" = "xyes"; then
AC_MSG_RESULT([ build shared library : "yes"])
else
AC_MSG_RESULT([ build shared library : "no"])
fi
if test "x$enable_static" = "xyes"; then
AC_MSG_RESULT([ build static library : "yes"])
else
AC_MSG_RESULT([ build static library : "no"])
fi

0 comments on commit e74fc73

Please sign in to comment.