aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authorreinelt <>2006-01-03 13:20:06 +0000
committerreinelt <>2006-01-03 13:20:06 +0000
commit5ea2a33ff46ee1c477a072bb20fc253c8eb99385 (patch)
tree1fde53343b02d8daa03b0912996941fe13ed26a3 /drivers.m4
parentb90e4809491f316e748bec41a545a5d785bff5f1 (diff)
downloadlcd4linux-5ea2a33ff46ee1c477a072bb20fc253c8eb99385.tar.gz
[lcd4linux @ 2006-01-03 13:20:05 by reinelt]
LUIse driver added
Diffstat (limited to '')
-rw-r--r--drivers.m417
1 files changed, 16 insertions, 1 deletions
diff --git a/drivers.m4 b/drivers.m4
index cdab746..b8b2c79 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -29,7 +29,7 @@ AC_ARG_WITH(
[ (try 'all,\!<driver>' if your shell complains...)]
[ possible drivers are:]
[ BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,]
- [ HD44780, LCDLinux, LCDTerm, LPH7508, M50530,]
+ [ HD44780, LCDLinux, LCDTerm, LPH7508, LUIse, M50530,]
[ MatrixOrbital, MilfordInstruments, Noritake, NULL,]
[ PNG, PPM, RouterBoard, Sample, serdisplib, SimpleLCD,]
[ T6963, Trefon, USBLCD, WincorNixdorf, X11],
@@ -62,6 +62,7 @@ for driver in $drivers; do
LCDLINUX="yes"
LCDTERM="yes"
LPH7508="yes"
+ LUISE="yes"
M50530="yes"
MATRIXORBITAL="yes"
MILINST="yes"
@@ -106,6 +107,9 @@ for driver in $drivers; do
LPH7508)
LPH7508=$val
;;
+ LUIse)
+ LUISE=$val
+ ;;
M50530)
M50530=$val
;;
@@ -253,6 +257,17 @@ if test "$LPH7508" = "yes"; then
AC_DEFINE(WITH_LPH7508,1,[LPH7508 driver])
fi
+if test "$LUISE" = "yes"; then
+ if test "$has_luise" = "true"; then
+ GRAPHIC="yes"
+ DRIVERS="$DRIVERS drv_LUIse.o"
+ DRVLIBS="$DRVLIBS -L/usr/local/lib -lluise"
+ AC_DEFINE(WITH_LUISE,1,[LUIse driver])
+ else
+ AC_MSG_WARN(luise.h not found: LUIse driver disabled)
+ fi
+fi
+
if test "$M50530" = "yes"; then
TEXT="yes"
PARPORT="yes"