aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-01-22 22:57:57 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-01-22 22:57:57 +0000
commit620568e08f7e1e7be5d3be85643f821cdcca897b (patch)
tree42fe090a521dcd8926d2bf2140685de507509182 /drivers.m4
parent4b6f7fb1f11af97b369feb39aa4c4ac16252045a (diff)
downloadlcd4linux-620568e08f7e1e7be5d3be85643f821cdcca897b.tar.gz
[lcd4linux @ 2005-01-22 22:57:57 by reinelt]
LCD-Linux driver added git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@511 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m421
1 files changed, 16 insertions, 5 deletions
diff --git a/drivers.m4 b/drivers.m4
index cdc8848..f98ac22 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -29,8 +29,9 @@ AC_ARG_WITH(
[ (try 'all,\!<driver>' if your shell complains...)]
[ possible drivers are:]
[ BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,]
- [ HD44780, LCDTerm, M50530, MatrixOrbital, MilfordInstruments,]
- [ NULL, PNG, PPM, RouterBoard, T6963, USBLCD, X11],
+ [ HD44780, LCDLinux, LCDTerm, M50530, MatrixOrbital,]
+ [ MilfordInstruments, NULL, PNG, PPM, RouterBoard,]
+ [ T6963, USBLCD, X11],
drivers=$withval,
drivers=all
)
@@ -57,7 +58,8 @@ for driver in $drivers; do
CURSES="yes"
CWLINUX="yes"
HD44780="yes"
- LCDTerm="yes"
+ LCDLINUX="yes"
+ LCDTERM="yes"
M50530="yes"
MATRIXORBITAL="yes"
MILINST="yes"
@@ -87,8 +89,11 @@ for driver in $drivers; do
HD44780)
HD44780=$val
;;
+ LCDLINUX)
+ LCDLINUX=$val
+ ;;
LCDTerm)
- LCDTerm=$val
+ LCDTERM=$val
;;
M50530)
M50530=$val
@@ -184,7 +189,13 @@ if test "$HD44780" = "yes"; then
AC_DEFINE(WITH_HD44780,1,[HD44780 driver])
fi
-if test "$LCDTerm" = "yes"; then
+if test "$LCDLINUX" = "yes"; then
+ TEXT="yes"
+ DRIVERS="$DRIVERS drv_LCDLinux.o"
+ AC_DEFINE(WITH_LCDLINUX,1,[LCD-Linux driver])
+fi
+
+if test "$LCDTERM" = "yes"; then
TEXT="yes"
SERIAL="yes"
DRIVERS="$DRIVERS drv_LCDTerm.o"