aboutsummaryrefslogtreecommitdiffstats
path: root/configure
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 /configure
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 'configure')
-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"