mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
27
package/ntp/0002-ntp-syscalls-fallback.patch
Normal file
27
package/ntp/0002-ntp-syscalls-fallback.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
inline ntp syscalls fallback
|
||||
|
||||
Reference:
|
||||
https://bugs.ntp.org/show_bug.cgi?id=769
|
||||
|
||||
Signed-off-by: James Knight <james.knight@rockwellcollins.com>
|
||||
---
|
||||
configure.ac | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1523,11 +1523,11 @@ AC_CACHE_CHECK(
|
||||
[ntp_cv_var_ntp_syscalls],
|
||||
[
|
||||
ntp_cv_var_ntp_syscalls=no
|
||||
- case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime$ac_cv_func___adjtimex" in
|
||||
+ case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime$ac_cv_func___adjtimex$ac_cv_func_adjtimex" in
|
||||
yesyes*)
|
||||
ntp_cv_var_ntp_syscalls=libc
|
||||
;;
|
||||
- *yes)
|
||||
+ *yesyes | *yesno | *noyes)
|
||||
ntp_cv_var_ntp_syscalls=inline
|
||||
;;
|
||||
*)
|
||||
Reference in New Issue
Block a user