From: Harlan Stenn Date: Mon, 15 Apr 2024 06:49:56 +0000 (-0700) Subject: Wire in --enable-build-framework X-Git-Tag: NTP_4_2_8P18_RC1~9^2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fce77035d60c16ca46889183df36436cd540cc18;p=thirdparty%2Fntp.git Wire in --enable-build-framework bk: 661cce14mEvTgnc1w3scoo-imhMQNQ --- diff --git a/ChangeLog b/ChangeLog index c5d0f5a49..2e856e3fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -90,6 +90,7 @@ * Add configure --enable-verbose-ssl to trace SSL detection. * Add build test coverage for --disable-saveconfig to flock-build script. +* wire in --enable-build-framework-help --- (4.2.8p17) 2023/06/06 Released by Harlan Stenn diff --git a/configure.ac b/configure.ac index 7362ec6cd..b262298a2 100644 --- a/configure.ac +++ b/configure.ac @@ -55,6 +55,23 @@ AC_DEFINE_UNQUOTED([STR_SYSTEM], ["$host"], AC_CONFIG_HEADERS([config.h]) dnl AC_ARG_PROGRAM +AC_MSG_CHECKING([if we should enable build framework help]) +AC_ARG_ENABLE( + [build-framework-help], + [AS_HELP_STRING( + [--enable-build-framework-help], + [+ enable build framework help] + )], + [ntp_ok=$enableval], + [ntp_ok=yes] +) +case "$ntp_ok" in + yes) + ntp_cv_build_framework_help=yes ;; + *) ntp_cv_build_framework_help=no ;; +esac +AC_MSG_RESULT([$ntp_ok]) + ntp_atom_ok=${ntp_atom_ok=no} ntp_oncore_ok=${ntp_oncore_ok=no} ntp_parse_ok=${ntp_parse_ok=no}