diff options
author | reinelt <> | 2004-08-29 13:03:41 +0000 |
---|---|---|
committer | reinelt <> | 2004-08-29 13:03:41 +0000 |
commit | 173f8cbcd18c0e3af0de31601c79241b5ccd9d2f (patch) | |
tree | cc11ccab2190d550254fbf984613f757932460a7 /configure | |
parent | 1faa74a415de8b91943dd97799596d7bdf3c39ec (diff) | |
download | lcd4linux-173f8cbcd18c0e3af0de31601c79241b5ccd9d2f.tar.gz |
[lcd4linux @ 2004-08-29 13:03:40 by reinelt]
added RouterBoard driver
Diffstat (limited to '')
-rwxr-xr-x | configure | 43 |
1 files changed, 28 insertions, 15 deletions
@@ -867,9 +867,9 @@ Optional Packages: drivers may be excluded with 'all,!<driver>', (try 'all,\!<driver>' if your shell complains...) possible drivers are: - BeckmannEgle, CrystalFontz, Curses, Cwlinux, - HD44780, M50530, T6963, USBLCD, MatrixOrbital, - MilfordInstruments, NULL, PNG, PPM, X11 + BeckmannEgle, CrystalFontz, Curses, Cwlinux, HD44780, + M50530, MatrixOrbital, MilfordInstruments, NULL + PNG, PPM, RouterBoard, T6963, USBLCD, X11 --with-plugins=<list> choose which plugins to compile. type --with-plugins=list for a list of avaible plugins @@ -5254,14 +5254,14 @@ for driver in $drivers; do CWLINUX="yes" HD44780="yes" M50530="yes" - T6963="yes" - USBLCD="yes" MATRIXORBITAL="yes" MILINST="yes" NULL="yes" - PALMPILOT="yes" PNG="yes" PPM="yes" + ROUTERBOARD="yes" + T6963="yes" + USBLCD="yes" X11="yes" ;; BeckmannEgle) @@ -5282,27 +5282,30 @@ for driver in $drivers; do M50530) M50530=$val ;; - NULL) - NULL=$val; - ;; - T6963) - T6963=$val - ;; - USBLCD) - USBLCD=$val - ;; MatrixOrbital) MATRIXORBITAL=$val ;; MilfordInstruments) MILINST=$val ;; + NULL) + NULL=$val; + ;; PNG) PNG=$val ;; PPM) PPM=$val ;; + RouterBoard) + ROUTERBOARD=$val + ;; + T6963) + T6963=$val + ;; + USBLCD) + USBLCD=$val + ;; X11) X11=$val ;; @@ -5450,6 +5453,16 @@ if test "$IMAGE" = "yes"; then DRIVERS="$DRIVERS drv_Image.o" fi +if test "$ROUTERBOARD" = "yes"; then + TEXT="yes" + DRIVERS="$DRIVERS drv_RouterBoard.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_ROUTERBOARD 1 +_ACEOF + +fi + if test "$T6963" = "yes"; then GRAPHIC="yes" PARPORT="yes" |