diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -1443,7 +1443,7 @@ Optional Packages: (try 'all,\!<driver>' if your shell complains...) possible drivers are: ASTUSB, BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, D4D, DPF - EA232Graphic, EFN, FW8888, G15, GLCD2USB, HD44780, HD44780-I2C, + EA232Graphic, EFN, FutabaVFD, FW8888, G15, GLCD2USB, HD44780, HD44780-I2C, IRLCD, LCD2USB, LCDLinux, LEDMatrix, LCDTerm, LPH7508, LUIse, LW_ABP, M50530, MatrixOrbital, MatrixOrbitalGX, MilfordInstruments, MDM166A, Newhaven, Noritake, NULL, Pertelian, PHAnderson, @@ -6282,6 +6282,7 @@ for driver in $drivers; do DPF="yes" EA232graphic="yes" EFN="yes" + FUTABAVFD="yes" FW8888="yes" G15="yes" GLCD2USB="yes" @@ -6356,6 +6357,9 @@ for driver in $drivers; do EFN) EFN=$val ;; + FutabaVFD) + FUTABAVFD=$val + ;; FW8888) FW8888=$val ;; @@ -6631,6 +6635,22 @@ $as_echo "#define WITH_EFN 1" >>confdefs.h fi +if test "$FUTABAVFD" = "yes"; then + if test "$has_parport" = "true"; then + TEXT="yes" + # select bus: serial (including USB), parallel or i2c + PARPORT="yes" + DRIVERS="$DRIVERS drv_FutabaVFD.o" + +$as_echo "#define WITH_FUTABAVFD 1" >>confdefs.h + + else + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: asm/io.h or {linux/parport.h and linux/ppdev.h} not found: FutabaVFD driver disabled" >&5 +$as_echo "$as_me: WARNING: asm/io.h or {linux/parport.h and linux/ppdev.h} not found: FutabaVFD driver disabled" >&2;} + fi +fi + + if test "$FW8888" = "yes"; then TEXT="yes" @@ -7087,7 +7107,6 @@ fi if test "$TeakLCM" = "yes"; then TEXT="yes" - GPIO="no" SERIAL="yes" DRIVERS="$DRIVERS drv_TeakLCM.o" |