From e0bc8f47b964169bcbec3ce14d1aca38bc024cee Mon Sep 17 00:00:00 2001 From: reinelt Date: Mon, 29 Apr 2002 11:00:28 +0000 Subject: [lcd4linux @ 2002-04-29 11:00:25 by reinelt] added Toshiba T6963 driver added ndelay() with nanosecond resolution git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@152 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- configure.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 8f6cca0..35d967d 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(lcd4linux.c) -AM_INIT_AUTOMAKE(lcd4linux, 0.98) +AM_INIT_AUTOMAKE(lcd4linux, 0.99) AM_CONFIG_HEADER(config.h) dnl Checks for programs. @@ -29,7 +29,7 @@ AC_ARG_WITH( [ drivers may be excluded with 'all,!',] [ (try 'all,\!' if your shell complains...)] [ possible drivers are:] - [ BeckmannEgle, CrystalFontz, HD44780, M50530] + [ BeckmannEgle, CrystalFontz, HD44780, M50530, T6963] [ MatrixOrbital, PalmPilot, PNG, PPM, X11, Text], drivers=$withval, drivers=all @@ -55,6 +55,7 @@ for driver in $drivers; do CRYSTALFONTZ="yes" HD44780="yes" M50530="yes" + T6963="yes" MATRIXORBITAL="yes" PALMPILOT="yes" PNG="yes" @@ -74,6 +75,9 @@ for driver in $drivers; do M50530) M50530=$val ;; + T6963) + T6963=$val + ;; MatrixOrbital) MATRIXORBITAL=$val ;; @@ -128,6 +132,11 @@ if test "$M50530" = "yes"; then AC_DEFINE(WITH_M50530) fi +if test "$T6963" = "yes"; then + DRIVERS="$DRIVERS T6963.o" + AC_DEFINE(WITH_T6963) +fi + if test "$MATRIXORBITAL" = "yes"; then DRIVERS="$DRIVERS MatrixOrbital.o" AC_DEFINE(WITH_MATRIXORBITAL) -- cgit v1.2.3