From: Harlan Stenn Date: Sun, 8 Aug 1999 00:41:37 +0000 (-0000) Subject: ChangeLog, config.h.in, configure, configure.in: X-Git-Tag: PRE_ATT_Y2K^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06f2e2f2daf33b84904cc6097fbdb553fdb2da87;p=thirdparty%2Fntp.git ChangeLog, config.h.in, configure, configure.in: * configure.in: Look for sys/ppstime.h. bk: 37acd241wLoXhosdyu-z0D5TCremWA --- diff --git a/ChangeLog b/ChangeLog index bdf952947..4016d79d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-08-07 Harlan Stenn + + * configure.in: Look for sys/ppstime.h. + 1999-07-31 Harlan Stenn * ntpd/ntp_io.c (create_sockets): Typo. diff --git a/config.h.in b/config.h.in index ec282b6d7..af4aa1e1e 100644 --- a/config.h.in +++ b/config.h.in @@ -738,6 +738,9 @@ /* Define if you have the header file. */ #undef HAVE_SYS_PPSCLOCK_H +/* Define if you have the header file. */ +#undef HAVE_SYS_PPSTIME_H + /* Define if you have the header file. */ #undef HAVE_SYS_PROC_H diff --git a/configure b/configure index 46b84cd2c..d8eba730a 100755 --- a/configure +++ b/configure @@ -2804,7 +2804,7 @@ else fi done -for ac_hdr in sys/proc.h sys/resource.h sys/sched.h +for ac_hdr in sys/ppstime.h sys/proc.h sys/resource.h sys/sched.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 diff --git a/configure.in b/configure.in index 506ab3b83..78aea0dde 100644 --- a/configure.in +++ b/configure.in @@ -215,7 +215,7 @@ case "$target" in ;; esac AC_CHECK_HEADERS(sys/lock.h sys/mman.h sys/modem.h sys/param.h sys/ppsclock.h) -AC_CHECK_HEADERS(sys/proc.h sys/resource.h sys/sched.h) +AC_CHECK_HEADERS(sys/ppstime.h sys/proc.h sys/resource.h sys/sched.h) case "$target" in *-*-sco3.2v4.2) ;;