diff options
author | reinelt <> | 2005-02-24 07:06:48 +0000 |
---|---|---|
committer | reinelt <> | 2005-02-24 07:06:48 +0000 |
commit | b3c3e822b6c56387cb3583a771767def47624463 (patch) | |
tree | 84dd4c1b0750ad3135abeef460bc10e0c9b77da5 /configure | |
parent | 0f91618aa36e77c0c9e8433f28dd3e313003a3db (diff) | |
download | lcd4linux-b3c3e822b6c56387cb3583a771767def47624463.tar.gz |
[lcd4linux @ 2005-02-24 07:06:45 by reinelt]
SimpleLCD driver added
Diffstat (limited to '')
-rwxr-xr-x | configure | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -870,7 +870,7 @@ Optional Packages: BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, HD44780, LCDLinux, LCDTerm, M50530, MatrixOrbital, MilfordInstruments, NULL, PNG, PPM, RouterBoard, - T6963, USBLCD, X11 + SimpleLCD, T6963, USBLCD, X11 --with-plugins=<list> choose which plugins to compile. type --with-plugins=list for a list of avaible plugins @@ -5419,6 +5419,7 @@ for driver in $drivers; do T6963="yes" USBLCD="yes" X11="yes" + SIMPLELCD="yes" ;; BeckmannEgle) BECKMANNEGLE=$val @@ -5465,6 +5466,9 @@ for driver in $drivers; do RouterBoard) ROUTERBOARD=$val ;; + SimpleLCD) + SIMPLELCD=$val + ;; T6963) T6963=$val ;; @@ -5667,6 +5671,17 @@ _ACEOF fi +if test "$SIMPLELCD" = "yes"; then + TEXT="yes" + SERIAL="yes" + DRIVERS="$DRIVERS drv_SimpleLCD.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_SIMPLELCD 1 +_ACEOF + +fi + if test "$T6963" = "yes"; then GRAPHIC="yes" PARPORT="yes" |