diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2011-07-27 05:58:08 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2011-07-27 05:58:08 +0000 |
commit | 6eec23d6f438845b1a646790a83be3053bc194bc (patch) | |
tree | 14a77147c2660837366de8622581ff51dd01aa1b /configure | |
parent | 2949be131a5cc198e3f6ec17a0b59e41a746349a (diff) | |
download | lcd4linux-6eec23d6f438845b1a646790a83be3053bc194bc.tar.gz |
driver for Newhaven's NHD‐0420D3Z‐FL‐GBW. 4x20 LCD by Rusty Clarkson
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1157 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rwxr-xr-x | configure | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -1443,8 +1443,8 @@ Optional Packages: ASTUSB, BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, D4D, EA232Graphic, EFN, FW8888, G15, GLCD2USB, HD44780, HD44780-I2C, IRLCD, LCD2USB, LCDLinux, LEDMatrix, LCDTerm, LPH7508, LUIse, - LW_ABP, M50530, MatrixOrbital, MatrixOrbitalGX, - MilfordInstruments, Noritake, NULL, Pertelian, PHAnderson, + LW_ABP, M50530, MatrixOrbital, MatrixOrbitalGX, MilfordInstruments, + Newhaven, Noritake, NULL, Pertelian, PHAnderson, PICGraphic, picoLCD, picoLCDGraphic, PNG, PPM, RouterBoard, Sample, serdisplib, ShuttleVFD, SimpleLCD, st2205, T6963, Trefon, ULA200, USBHUB, USBLCD, VNC, WincorNixdorf, X11 @@ -6250,6 +6250,7 @@ for driver in $drivers; do MATRIXORBITAL="yes" MATRIXORBITALGX="yes" MILINST="yes" + NEWHAVEN="yes" NORITAKE="yes" NULL="yes" PERTELIAN="yes" @@ -6352,6 +6353,9 @@ for driver in $drivers; do MilfordInstruments) MILINST=$val ;; + Newhaven) + NEWHAVEN=$val + ;; Noritake) NORITAKE=$val; ;; @@ -6773,6 +6777,16 @@ $as_echo "#define WITH_MILINST 1" >>confdefs.h fi +if test "$NEWHAVEN" = "yes"; then + TEXT="yes" + #SERIAL="yes" + I2C="yes" + DRIVERS="$DRIVERS drv_Newhaven.o" + +$as_echo "#define WITH_NEWHAVEN 1" >>confdefs.h + +fi + if test "$NORITAKE" = "yes"; then if test "$has_parport" = "true"; then TEXT="yes" |