diff options
author | reinelt <> | 2005-05-04 05:42:38 +0000 |
---|---|---|
committer | reinelt <> | 2005-05-04 05:42:38 +0000 |
commit | d5547cff8af62a296bc5e169da66cdcdc73c5af3 (patch) | |
tree | d56b5b6c7215dfe8e13c911bec2c284f6b4500bd /configure | |
parent | b3545ccc14ea8c34618dc049bb9a3ba187145411 (diff) | |
download | lcd4linux-d5547cff8af62a296bc5e169da66cdcdc73c5af3.tar.gz |
[lcd4linux @ 2005-05-04 05:42:37 by reinelt]
Noritake driver added
Diffstat (limited to '')
-rwxr-xr-x | configure | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -869,8 +869,8 @@ Optional Packages: possible drivers are: BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, HD44780, LCDLinux, LCDTerm, M50530, MatrixOrbital, - MilfordInstruments, NULL, PNG, PPM, RouterBoard, - SimpleLCD, T6963, Trefon, USBLCD, X11 + MilfordInstruments, Noritake, NULL, PNG, PPM, + RouterBoard, SimpleLCD, T6963, Trefon, USBLCD, X11 --with-plugins=<list> choose which plugins to compile. type --with-plugins=list for a list of avaible plugins @@ -5813,6 +5813,7 @@ for driver in $drivers; do M50530="yes" MATRIXORBITAL="yes" MILINST="yes" + NORITAKE="yes" NULL="yes" PNG="yes" PPM="yes" @@ -5856,6 +5857,9 @@ for driver in $drivers; do MilfordInstruments) MILINST=$val ;; + Noritake) + NORITAKE=$val; + ;; NULL) NULL=$val; ;; @@ -6034,6 +6038,18 @@ _ACEOF fi +if test "$NORITAKE" = "yes"; then + TEXT="yes" + GRAPHIC="yes" + PARPORT="yes" + DRIVERS="$DRIVERS drv_Noritake.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_NORITAKE 1 +_ACEOF + +fi + if test "$NULL" = "yes"; then DRIVERS="$DRIVERS drv_NULL.o" |