mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
fixed some bugs with the new syslog code git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@65 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
35 lines
759 B
Plaintext
35 lines
759 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(lcd4linux.c)
|
|
AM_INIT_AUTOMAKE(lcd4linux, 0.98)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_AWK
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LN_S
|
|
|
|
dnl Checks for libraries.
|
|
AC_CHECK_LIB(m, log)
|
|
|
|
dnl Checks for X11
|
|
AC_PATH_XTRA
|
|
AM_CONDITIONAL(WITH_X, test x$no_x = x)
|
|
|
|
dnl Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h syslog.h unistd.h)
|
|
AC_CHECK_HEADERS(sys/io.h asm/io.h)
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
AC_C_CONST
|
|
AC_TYPE_PID_T
|
|
AC_HEADER_TIME
|
|
|
|
dnl Checks for library functions.
|
|
AC_PROG_GCC_TRADITIONAL
|
|
AC_FUNC_MEMCMP
|
|
AC_TYPE_SIGNAL
|
|
AC_CHECK_FUNCS(gettimeofday socket strdup strerror strstr strtol uname)
|
|
|
|
AC_OUTPUT(Makefile)
|