package/dhcp/S80dhcp-server: allow empty INTERFACES
[buildroot-gz.git] / package / ntp / 0002-ntp-syscalls-fallback.patch
blob535fc93dfdbf2edd89ce60d52cb7feffdb21d253
1 inline ntp syscalls fallback
3 Reference:
4 https://bugs.ntp.org/show_bug.cgi?id=769
6 Signed-off-by: James Knight <james.knight@rockwellcollins.com>
7 ---
8 configure.ac | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
11 diff --git a/configure.ac b/configure.ac
12 --- a/configure.ac
13 +++ b/configure.ac
14 @@ -1523,11 +1523,11 @@ AC_CACHE_CHECK(
15 [ntp_cv_var_ntp_syscalls],
17 ntp_cv_var_ntp_syscalls=no
18 - case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime$ac_cv_func___adjtimex" in
19 + case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime$ac_cv_func___adjtimex$ac_cv_func_adjtimex" in
20 yesyes*)
21 ntp_cv_var_ntp_syscalls=libc
23 - *yes)
24 + *yesyes | *yesno | *noyes)
25 ntp_cv_var_ntp_syscalls=inline