]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
Wire in --enable-build-framework
authorHarlan Stenn <stenn@ntp.org>
Mon, 15 Apr 2024 06:49:56 +0000 (23:49 -0700)
committerHarlan Stenn <stenn@ntp.org>
Mon, 15 Apr 2024 06:49:56 +0000 (23:49 -0700)
bk: 661cce14mEvTgnc1w3scoo-imhMQNQ

ChangeLog
configure.ac

index c5d0f5a4968f901881003956b5facea9b2b9d654..2e856e3fa7e1f1ead7a24f79450e2b5faa64d301 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -90,6 +90,7 @@
 * Add configure --enable-verbose-ssl to trace SSL detection. <hart@ntp.org>
 * Add build test coverage for --disable-saveconfig to flock-build script.
   <hart@ntp.org>
+* wire in --enable-build-framework-help
 
 ---
 (4.2.8p17) 2023/06/06 Released by Harlan Stenn <stenn@ntp.org>
index 7362ec6cd9f03e5139a834a941277fd3c7d96ec9..b262298a217392f897b3522f0830e62cf97749ab 100644 (file)
@@ -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}