aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreinelt <>2005-01-22 22:57:57 +0000
committerreinelt <>2005-01-22 22:57:57 +0000
commitb285743489e7d237cb32fc3aaae0ffdad6c264a4 (patch)
tree42fe090a521dcd8926d2bf2140685de507509182 /configure
parent8f661b82c70ded73c02fa0b3491f8e6998fe7e51 (diff)
downloadlcd4linux-b285743489e7d237cb32fc3aaae0ffdad6c264a4.tar.gz
[lcd4linux @ 2005-01-22 22:57:57 by reinelt]
LCD-Linux driver added
Diffstat (limited to '')
-rwxr-xr-xconfigure27
1 files changed, 21 insertions, 6 deletions
diff --git a/configure b/configure
index a4e4564..e084bf6 100755
--- a/configure
+++ b/configure
@@ -868,8 +868,9 @@ Optional Packages:
(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
--with-plugins=<list> choose which plugins to compile.
type --with-plugins=list for a list
of avaible plugins
@@ -3398,7 +3399,7 @@ echo "${ECHO_T}Please note that some screen refreshs may fail" >&6
echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
ncurses_version=unknown
cat > conftest.$ac_ext <<EOF
-#line 3401 "configure"
+#line 3402 "configure"
#include "confdefs.h"
#ifdef RENAMED_NCURSES
#include <curses.h>
@@ -5406,7 +5407,8 @@ for driver in $drivers; do
CURSES="yes"
CWLINUX="yes"
HD44780="yes"
- LCDTerm="yes"
+ LCDLINUX="yes"
+ LCDTERM="yes"
M50530="yes"
MATRIXORBITAL="yes"
MILINST="yes"
@@ -5436,8 +5438,11 @@ for driver in $drivers; do
HD44780)
HD44780=$val
;;
+ LCDLINUX)
+ LCDLINUX=$val
+ ;;
LCDTerm)
- LCDTerm=$val
+ LCDTERM=$val
;;
M50530)
M50530=$val
@@ -5562,7 +5567,17 @@ _ACEOF
fi
-if test "$LCDTerm" = "yes"; then
+if test "$LCDLINUX" = "yes"; then
+ TEXT="yes"
+ DRIVERS="$DRIVERS drv_LCDLinux.o"
+
+cat >>confdefs.h <<\_ACEOF
+#define WITH_LCDLINUX 1
+_ACEOF
+
+fi
+
+if test "$LCDTERM" = "yes"; then
TEXT="yes"
SERIAL="yes"
DRIVERS="$DRIVERS drv_LCDTerm.o"