From: Harlan Stenn Date: Tue, 20 Jul 1999 08:28:18 +0000 (-0000) Subject: ChangeLog, configure, configure.in: X-Git-Tag: NTP_4_0_94~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a93a5f79e04b4431c418856e03e80fdef137f3e3;p=thirdparty%2Fntp.git ChangeLog, configure, configure.in: * configure.in (ac_cv_var_struct_ntptime_val_timespec): Typo. From: John Hay bk: 37943322JKwp0Uj-CHsOEZMMti0X8g --- diff --git a/ChangeLog b/ChangeLog index 229d3bc0c..d8a7e0331 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-07-20 Harlan Stenn + + * configure.in (ac_cv_var_struct_ntptime_val_timespec): Typo. + From: John Hay + 1999-07-19 Harlan Stenn * Makefile.am (EXTRA_DIST): Lose ntpmak; "build" does a better job. diff --git a/configure b/configure index 7656055e2..1b5478deb 100755 --- a/configure +++ b/configure @@ -7101,7 +7101,7 @@ else #include #include int main() { -struct nntptimeval n; n.time.tv_nsec = 0; +struct ntptimeval n; n.time.tv_nsec = 0; ; return 0; } EOF if { (eval echo configure:7108: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then diff --git a/configure.in b/configure.in index 24d498d90..1573f2637 100644 --- a/configure.in +++ b/configure.in @@ -1225,7 +1225,7 @@ AC_CACHE_CHECK(if sys/timex.h has STA_FLL, ac_cv_var_sta_fll, AC_CACHE_CHECK([for struct timespec in struct ntptimeval], ac_cv_struct_ntptimeval_timespec, [AC_TRY_COMPILE([#include #include ], -[struct nntptimeval n; n.time.tv_nsec = 0;], +[struct ntptimeval n; n.time.tv_nsec = 0;], ac_cv_struct_ntptimeval_timespec=yes, ac_cv_struct_ntptimeval_timespec=no)]) if test $ac_cv_struct_ntptimeval_timespec = yes; then AC_DEFINE(TIMESPEC_IN_NTPTIMEVAL, 1, [Does ntptimeval use struct timespec?])