aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authorreinelt <>2005-08-22 05:44:43 +0000
committerreinelt <>2005-08-22 05:44:43 +0000
commitb0fbf35cb1e4b43ad69f80cd90622dd26d35548f (patch)
treeff5105262aa589bc4ab97816dcc549b22404a2fd /drivers.m4
parent037aec3232425cdbe20af8ef24b69b0826717bd3 (diff)
downloadlcd4linux-b0fbf35cb1e4b43ad69f80cd90622dd26d35548f.tar.gz
[lcd4linux @ 2005-08-22 05:44:43 by reinelt]
new driver 'WincorNixdorf' some fixes to the bar code
Diffstat (limited to '')
-rw-r--r--drivers.m413
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers.m4 b/drivers.m4
index 0a6100e..1421787 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -32,7 +32,7 @@ AC_ARG_WITH(
[ HD44780, LCDLinux, LCDTerm, M50530, MatrixOrbital,]
[ MilfordInstruments, Noritake, NULL, PNG, PPM,]
[ RouterBoard, serdisplib, SimpleLCD, T6963, Trefon,]
- [ USBLCD, X11],
+ [ USBLCD, WincorNixdorf, X11],
drivers=$withval,
drivers=all
)
@@ -74,6 +74,7 @@ for driver in $drivers; do
T6963="yes"
Trefon="yes"
USBLCD="yes"
+ WINCORNIXDORF="yes"
X11="yes"
;;
BeckmannEgle)
@@ -139,6 +140,9 @@ for driver in $drivers; do
USBLCD)
USBLCD=$val
;;
+ WincorNixdorf)
+ WINCORNIXDORF=$val
+ ;;
X11)
X11=$val
;;
@@ -330,6 +334,13 @@ if test "$USBLCD" = "yes"; then
AC_DEFINE(WITH_USBLCD,1,[USBLCD driver])
fi
+if test "$WINCORNIXDORF" = "yes"; then
+ TEXT="yes"
+ SERIAL="yes"
+ DRIVERS="$DRIVERS drv_WincorNixdorf.o"
+ AC_DEFINE(WITH_WINCORNIXDORF,1,[WincorNixdorf driver])
+fi
+
if test "$X11" = "yes"; then
if test "$no_x" = "yes"; then
AC_MSG_WARN(X11 headers or libraries not available: X11 driver disabled)