]> granicus.if.org Git - xz/commitdiff
Build: Make configure print if symbol versioning is enabled or not.
authorLasse Collin <lasse.collin@tukaani.org>
Sat, 28 May 2011 16:24:56 +0000 (19:24 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Sat, 28 May 2011 16:24:56 +0000 (19:24 +0300)
configure.ac

index 106c0811a8df851c33e16b9176cf19fb3be2e420..5247c9793118e5a82d7c431449fb30d246490b39 100644 (file)
@@ -407,6 +407,7 @@ AM_CONDITIONAL([COND_SCRIPTS], [test x$enable_scripts != xno])
 # Symbol versioning #
 #####################
 
+AC_MSG_CHECKING([if library symbol versioning should be used])
 AC_ARG_ENABLE([symbol-versions], [AC_HELP_STRING([--enable-symbol-versions],
                [Use symbol versioning for liblzma. Enabled by default on
                GNU/Linux, other GNU-based systems, and FreeBSD.])],
@@ -421,6 +422,7 @@ if test "x$enable_symbol_versions" = xauto; then
                        ;;
        esac
 fi
+AC_MSG_RESULT([$enable_symbol_versions])
 AM_CONDITIONAL([COND_SYMVERS], [test "x$enable_symbol_versions" = xyes])