diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2000-03-10 12:02:43 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2000-03-10 12:02:43 +0000 |
commit | 32b5a154a49a57c94b26102105bc7adb308022e4 (patch) | |
tree | 072edbca87c53c233d790348843db050c4c3c31a /configure | |
parent | c56cd5c1ad40717772fa9212dbeca34ac0a2c305 (diff) | |
download | lcd4linux-32b5a154a49a57c94b26102105bc7adb308022e4.tar.gz |
[lcd4linux @ 2000-03-10 12:02:43 by reinelt]
autoconf/automake
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@8 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r-- | configure.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configure.in b/configure.in new file mode 100644 index 0000000..9c7ea3c --- /dev/null +++ b/configure.in @@ -0,0 +1,23 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(lcd4linux.c) +AM_INIT_AUTOMAKE(lcd4linux, 0.8) + +dnl Checks for programs. +AC_PROG_CC + +dnl Checks for libraries. +dnl Replace `main' with a function in -lm: +AC_CHECK_LIB(m, main) + +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) |