aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-01-15 13:10:15 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-01-15 13:10:15 +0000
commit1330a5195ad88afa76d827af83daad596bd9a2c6 (patch)
tree507bb6d30d18f3a03b1a924d7584a1f426acab30 /drivers.m4
parent26e8641e96e36d642115ba44591a72dfbb7ae01a (diff)
downloadlcd4linux-1330a5195ad88afa76d827af83daad596bd9a2c6.tar.gz
[lcd4linux @ 2005-01-15 13:10:13 by reinelt]
LCDTerm driver added git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@504 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m413
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers.m4 b/drivers.m4
index 07ab6a6..eecf741 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -10,7 +10,7 @@ AC_ARG_WITH(
[ (try 'all,\!<driver>' if your shell complains...)]
[ possible drivers are:]
[ BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,]
- [ HD44780, M50530, MatrixOrbital, MilfordInstruments,]
+ [ HD44780, LCDTerm, M50530, MatrixOrbital, MilfordInstruments,]
[ NULL, PNG, PPM, RouterBoard, T6963, USBLCD, X11],
drivers=$withval,
drivers=all
@@ -38,6 +38,7 @@ for driver in $drivers; do
CURSES="yes"
CWLINUX="yes"
HD44780="yes"
+ LCDTerm="yes"
M50530="yes"
MATRIXORBITAL="yes"
MILINST="yes"
@@ -67,6 +68,9 @@ for driver in $drivers; do
HD44780)
HD44780=$val
;;
+ LCDTerm)
+ LCDTerm=$val
+ ;;
M50530)
M50530=$val
;;
@@ -161,6 +165,13 @@ if test "$HD44780" = "yes"; then
AC_DEFINE(WITH_HD44780,1,[HD44780 driver])
fi
+if test "$LCDTerm" = "yes"; then
+ TEXT="yes"
+ SERIAL="yes"
+ DRIVERS="$DRIVERS drv_LCDTerm.o"
+ AC_DEFINE(WITH_LCDTERM,1,[LCDTerm driver])
+fi
+
if test "$M50530" = "yes"; then
TEXT="yes"
PARPORT="yes"