Files
archived-lcd4linux/configure.in
reinelt 6f0d2a7f02 [lcd4linux @ 2000-03-22 07:33:50 by reinelt]
FAQ added
new modules 'processor.c' contains all data processing

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@15 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2000-03-22 07:33:50 +00:00

23 lines
538 B
Plaintext

dnl Process this file with autoconf to produce a configure script.
AC_INIT(lcd4linux.c)
AM_INIT_AUTOMAKE(lcd4linux, 0.94)
dnl Checks for programs.
AC_PROG_CC
dnl Checks for libraries.
AC_CHECK_LIB(m, log)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_TIME
dnl Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_CHECK_FUNCS(gettimeofday strdup strerror strstr strtol uname)
AC_OUTPUT(Makefile)