"Fossies" - the Fresh Open Source Software archive 
Member "adjtimex-1.28/configure.in" of archive adjtimex-1.28.tar.gz:
dnl Process this file with autoconf to produce a configure script.
dnl Initialize.
AC_PREREQ(2.60)
AC_INIT(adjtimex.c)
AC_CONFIG_HEADERS([config.h])
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/time.h unistd.h linux/rtc.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_HEADER_TIME
AC_STRUCT_TM
dnl Checks for library functions.
AC_CHECK_FUNCS(gettimeofday mktime putenv select)
AC_OUTPUT(Makefile)