1inline ntp syscalls fallback
2
3Reference:
4 https://bugs.ntp.org/show_bug.cgi?id=769
5
6Signed-off-by: James Knight <james.knight@rockwellcollins.com>
7---
8 configure.ac | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
10
11Index: ntp-4.2.8p17/configure.ac
12===================================================================
13--- ntp-4.2.8p17.orig/configure.ac
14+++ ntp-4.2.8p17/configure.ac
15@@ -1472,11 +1472,11 @@ AC_CACHE_CHECK(
16     [ntp_cv_var_ntp_syscalls],
17     [
18 	ntp_cv_var_ntp_syscalls=no
19-	case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime$ac_cv_func___adjtimex" in
20+	case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime$ac_cv_func___adjtimex$ac_cv_func_adjtimex" in
21 	 yesyes*)
22 	    ntp_cv_var_ntp_syscalls=libc
23 	    ;;
24-	 *yes)
25+	 *yesyes | *yesno | *noyes)
26 	    ntp_cv_var_ntp_syscalls=inline
27 	    ;;
28 	 *)
29