aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--drivers.m413
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers.m4 b/drivers.m4
index f98ac22..f012f3c 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -31,7 +31,7 @@ AC_ARG_WITH(
[ BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,]
[ HD44780, LCDLinux, LCDTerm, M50530, MatrixOrbital,]
[ MilfordInstruments, NULL, PNG, PPM, RouterBoard,]
- [ T6963, USBLCD, X11],
+ [ SimpleLCD, T6963, USBLCD, X11],
drivers=$withval,
drivers=all
)
@@ -70,6 +70,7 @@ for driver in $drivers; do
T6963="yes"
USBLCD="yes"
X11="yes"
+ SIMPLELCD="yes"
;;
BeckmannEgle)
BECKMANNEGLE=$val
@@ -116,6 +117,9 @@ for driver in $drivers; do
RouterBoard)
ROUTERBOARD=$val
;;
+ SimpleLCD)
+ SIMPLELCD=$val
+ ;;
T6963)
T6963=$val
;;
@@ -252,6 +256,13 @@ if test "$ROUTERBOARD" = "yes"; then
AC_DEFINE(WITH_ROUTERBOARD,1,[RouterBoard driver])
fi
+if test "$SIMPLELCD" = "yes"; then
+ TEXT="yes"
+ SERIAL="yes"
+ DRIVERS="$DRIVERS drv_SimpleLCD.o"
+ AC_DEFINE(WITH_SIMPLELCD,1,[SimpleLCD driver])
+fi
+
if test "$T6963" = "yes"; then
GRAPHIC="yes"
PARPORT="yes"