diff options
Diffstat (limited to '')
-rw-r--r-- | configure.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 35d967d..a668fa1 100644 --- a/configure.in +++ b/configure.in @@ -30,7 +30,7 @@ AC_ARG_WITH( [ (try 'all,\!<driver>' if your shell complains...)] [ possible drivers are:] [ BeckmannEgle, CrystalFontz, HD44780, M50530, T6963] - [ MatrixOrbital, PalmPilot, PNG, PPM, X11, Text], + [ USBLCD, MatrixOrbital, PalmPilot, PNG, PPM, X11, Text], drivers=$withval, drivers=all ) @@ -56,6 +56,7 @@ for driver in $drivers; do HD44780="yes" M50530="yes" T6963="yes" + USBLCD="yes" MATRIXORBITAL="yes" PALMPILOT="yes" PNG="yes" @@ -78,6 +79,9 @@ for driver in $drivers; do T6963) T6963=$val ;; + USBLCD) + USBLCD=$val + ;; MatrixOrbital) MATRIXORBITAL=$val ;; @@ -137,6 +141,11 @@ if test "$T6963" = "yes"; then AC_DEFINE(WITH_T6963) fi +if test "$USBLCD" = "yes"; then + DRIVERS="$DRIVERS USBLCD.o" + AC_DEFINE(WITH_USBLCD) +fi + if test "$MATRIXORBITAL" = "yes"; then DRIVERS="$DRIVERS MatrixOrbital.o" AC_DEFINE(WITH_MATRIXORBITAL) |