diff --git a/libclamav/c++/configure b/libclamav/c++/configure index c51beb07d..f19918aeb 100755 --- a/libclamav/c++/configure +++ b/libclamav/c++/configure @@ -14958,9 +14958,17 @@ if test "$enable_alltargets" = "yes"; then build_arm=yes fi if test "$ac_cv_c_bigendian" = "universal"; then - build_x86 = yes - build_ppc = yes -fi + { $as_echo "$as_me:${as_lineno-$LINENO}: Universal build detected" >&5 +$as_echo "$as_me: Universal build detected" >&6;} + build_x86=yes + build_ppc=yes +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: Building X86 backend: $build_x86" >&5 +$as_echo "$as_me: Building X86 backend: $build_x86" >&6;} +{ $as_echo "$as_me:${as_lineno-$LINENO}: Building PPC backend: $build_ppc" >&5 +$as_echo "$as_me: Building PPC backend: $build_ppc" >&6;} +{ $as_echo "$as_me:${as_lineno-$LINENO}: Building ARM backend: $build_arm" >&5 +$as_echo "$as_me: Building ARM backend: $build_arm" >&6;} if test "$build_x86" = "yes"; then BUILD_X86_TRUE= BUILD_X86_FALSE='#' diff --git a/libclamav/c++/configure.ac b/libclamav/c++/configure.ac index c416a949b..1573c6c45 100644 --- a/libclamav/c++/configure.ac +++ b/libclamav/c++/configure.ac @@ -212,9 +212,13 @@ if test "$enable_alltargets" = "yes"; then build_arm=yes fi if test "$ac_cv_c_bigendian" = "universal"; then - build_x86 = yes - build_ppc = yes + AC_MSG_NOTICE([Universal build detected]) + build_x86=yes + build_ppc=yes fi +AC_MSG_NOTICE([Building X86 backend: $build_x86]) +AC_MSG_NOTICE([Building PPC backend: $build_ppc]) +AC_MSG_NOTICE([Building ARM backend: $build_arm]) AM_CONDITIONAL(BUILD_X86, [test "$build_x86" = "yes"]) AM_CONDITIONAL(BUILD_PPC, [test "$build_ppc" = "yes"]) AM_CONDITIONAL(BUILD_ARM, [test "$build_arm" = "yes"])