From d25ab081e1663f5a79afd2a240e22807e0c4768a Mon Sep 17 00:00:00 2001 From: richardash1981 Date: Sat, 9 Aug 2014 19:57:10 +0000 Subject: [PATCH] Add some extra output to indicate which plug-in formats are supported, and what link libraries each optional library is pulling in for diagnostic purposes --- configure.ac | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 921fe3bbf..35333ba40 100644 --- a/configure.ac +++ b/configure.ac @@ -492,8 +492,9 @@ for lib in $LIBRARIES ; do AC_DEFINE_UNQUOTED($symbol, 1) done elif test "$LIB_USE_SYSTEM" = "yes" ; then + eval LIB_LIBS=\"\$${lib}_SYSTEM_LIBS\" + AC_MSG_NOTICE([${lib}: adding ${LIB_LIBS} to libraries]) eval LIBS=\"$LIBS \$${lib}_SYSTEM_LIBS\" - #LIBS="$LIBS $THESE_LIBS" eval CXXFLAGS=\"\$CXXFLAGS \$${lib}_SYSTEM_CXXFLAGS\" eval CPPSYMBOLS=\"\$${lib}_SYSTEM_CPPSYMBOLS\" @@ -733,15 +734,21 @@ for lib in $LIBRARIES ; do done if [[ "$use_ladspa" = "yes" ]] ; then - echo "ladspa: enabled" + echo "ladspa plugin support: enabled" else - echo "ladspa: disabled" + echo "ladspa plugin support: disabled" fi if [[ "$use_audiounits" = "yes" ]] ; then - echo "audiounits: enabled" + echo "audiounit plugin support: enabled" else - echo "audiounits: disabled" + echo "audiounit plugin support: disabled" +fi + +if [[ "$use_vst" = "yes" ]] ; then + echo "VST plugin support: enabled" +else + echo "VST plugin support: disabled" fi echo "prefix=$prefix";