diff options
author | volker <volker@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-11-18 17:19:16 +0000 |
---|---|---|
committer | volker <volker@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-11-18 17:19:16 +0000 |
commit | 1622daf8d03a8a54f45fb43b256680fd6e3a1593 (patch) | |
tree | aedcfd17d689a0ef7d37ce9ca197848aadde0bec /configure | |
parent | 7f3ada9b1b46e075dce79a9f98a1e4f3691d7a83 (diff) | |
download | lcd4linux-1622daf8d03a8a54f45fb43b256680fd6e3a1593.tar.gz |
disabling some driver if no parport available
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1062 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 7e5a7f4..ef69b35 100644 --- a/configure.in +++ b/configure.in @@ -100,6 +100,10 @@ if test "$with_python" = "yes"; then AC_PYTHON_DEVEL fi +# check for parport +#AC_CHECK_HEADERS(asm/io.h) +AC_CHECK_HEADERS([asm/io.h] [linux/parport.h linux/ppdev.h], [has_parport="true"], [has_parport="false"]) + # drivers sinclude(drivers.m4) @@ -110,8 +114,6 @@ sinclude(plugins.m4) AC_HEADER_DIRENT AC_HEADER_STDC AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h sys/vfs.h syslog.h termios.h unistd.h]) -AC_CHECK_HEADERS(asm/io.h) -AC_CHECK_HEADERS(linux/parport.h linux/ppdev.h) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST |