diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-08-03 03:10:49 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-08-03 03:10:49 +0000 |
commit | 38367abf672c32015cacd8b469c390a048f2c97f (patch) | |
tree | fe3f5d55271947f76fc958352d69d3db12b4b9d8 /configure | |
parent | e91cbd072ab678b68095a5e81fc37df6ae44c975 (diff) | |
download | lcd4linux-38367abf672c32015cacd8b469c390a048f2c97f.tar.gz |
driver for 4D Systems serial displays by Sven Killig
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@887 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rwxr-xr-x | configure | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -1342,7 +1342,7 @@ Optional Packages: drivers may be excluded with 'all,!<driver>', (try 'all,\!<driver>' if your shell complains...) possible drivers are: - BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, + BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, D4D G15, HD44780, IRLCD, LCD2USB LCDLinux, LCDTerm, LPH7508, LUIse, M50530, MatrixOrbital, MilfordInstruments, Noritake, NULL, PNG, PPM, Pertelian, picoLCD, picoLCDGraphic, @@ -7540,6 +7540,7 @@ for driver in $drivers; do CRYSTALFONTZ="yes" CURSES="yes" CWLINUX="yes" + D4D="yes" EA232graphic="yes" G15="yes" HD44780="yes" @@ -7587,6 +7588,9 @@ for driver in $drivers; do Cwlinux) CWLINUX=$val ;; + D4D) + D4D=$val + ;; EA232graphic) EA232graphic=$val ;; @@ -7783,6 +7787,18 @@ _ACEOF fi +if test "$D4D" = "yes"; then + TEXT="yes" + GRAPHIC="yes" + SERIAL="yes" + DRIVERS="$DRIVERS drv_D4D.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_D4D 1 +_ACEOF + +fi + if test "$EA232graphic" = "yes"; then GRAPHIC="yes" SERIAL="yes" |