From: Harlan Stenn Date: Sat, 15 Jul 2023 07:45:44 +0000 (-0700) Subject: configure libevent check intersperses output with answer. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84b4a5c4a1f7f8f4a86d7b02feb6eed0b7758874;p=thirdparty%2Fntp.git configure libevent check intersperses output with answer. bk: 64b24ea8Z-315I7Kv1BYsHDBpuQyCg --- diff --git a/ChangeLog b/ChangeLog index fb1df82ce..244e0c6ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ list is empty. * [Bug 3835] NTP_HARD_*FLAGS not used by libevent tearoff. * [Bug 3831] pollskewlist zeroed on runtime configuration. +* [Bug 3830] configure libevent check intersperses output with answer. * [Bug 3828] BK should ignore a git repo in the same directory. * [Bug 3827] Fix build in case CLOCK_HOPF6021 or CLOCK_WHARTON_400A diff --git a/sntp/m4/ntp_libevent.m4 b/sntp/m4/ntp_libevent.m4 index 8e7d65b5c..451eac58f 100644 --- a/sntp/m4/ntp_libevent.m4 +++ b/sntp/m4/ntp_libevent.m4 @@ -74,7 +74,6 @@ case "$ntp_use_local_libevent" in *) # If we have (a good enough) pkg-config, see if it can find libevent case "$PKG_CONFIG" in /*) - AC_MSG_CHECKING([if libevent $ntp_libevent_min_version or later is installed]) if $PKG_CONFIG --atleast-version=$ntp_libevent_min_version libevent then ntp_use_local_libevent=no @@ -83,6 +82,7 @@ case "$ntp_use_local_libevent" in *.*) ;; *) ntp_libevent_version='(unknown)' ;; esac + AC_MSG_CHECKING([if libevent $ntp_libevent_min_version or later is installed]) AC_MSG_RESULT([yes, version $ntp_libevent_version]) CFLAGS_LIBEVENT=`$PKG_CONFIG --cflags libevent_pthreads` CPPFLAGS_LIBEVENT=`$PKG_CONFIG --cflags-only-I libevent` @@ -116,6 +116,7 @@ case "$ntp_use_local_libevent" in # HMS: do we only need to do this if LIBISC_PTHREADS_NOTHREADS # is "pthreads"? CFLAGS_LIBEVENT=`$PKG_CONFIG --cflags libevent_pthreads` + AC_MSG_CHECKING([if libevent $ntp_libevent_min_version or later is installed]) AC_MSG_RESULT([no]) fi ;;