aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2007-10-01 15:04:49 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2007-10-01 15:04:49 +0000
commit354b411f9ddf943fe35b380f11d52bd6201df131 (patch)
treedd12acd3f92bb6d592b252f12d1a8b05aab75df1 /configure
parent2dfe05bcccd321f4907cf976edceb409c27f2677 (diff)
downloadlcd4linux-354b411f9ddf943fe35b380f11d52bd6201df131.tar.gz
driver for Pertelian display by Andy Powell
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@843 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure31
1 files changed, 25 insertions, 6 deletions
diff --git a/configure b/configure
index 121b2ff..d6e9ece 100755
--- a/configure
+++ b/configure
@@ -1344,8 +1344,8 @@ Optional Packages:
BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,
G15, HD44780, LCD2USB LCDLinux, LCDTerm, LPH7508,
LUIse, M50530, MatrixOrbital, MilfordInstruments,
- Noritake, NULL, PNG, PPM, picoLCD, RouterBoard, Sample,
- serdisplib, SimpleLCD, T6963, Trefon, USBLCD,
+ Noritake, NULL, PNG, PPM, Pertelian, picoLCD, RouterBoard,
+ Sample, serdisplib, SimpleLCD, T6963, Trefon, USBLCD,
USBHUB, WincorNixdorf, X11
--with-plugins=<list> choose which plugins to compile.
type --with-plugins=list for a list
@@ -7388,7 +7388,8 @@ for driver in $drivers; do
MILINST="yes"
NORITAKE="yes"
NULL="yes"
- picoLCD="yes"
+ PERTELIAN="yes"
+ PICOLCD="yes"
PNG="yes"
PPM="yes"
ROUTERBOARD="yes"
@@ -7462,8 +7463,11 @@ for driver in $drivers; do
NULL)
NULL=$val;
;;
+ Pertelian)
+ PERTELIAN=$val
+ ;;
picoLCD)
- picoLCD=$val
+ PICOLCD=$val
;;
PNG)
PNG=$val
@@ -7792,7 +7796,22 @@ _ACEOF
fi
-if test "$picoLCD" = "yes"; then
+if test "$PERTELIAN" = "yes"; then
+ # select either text or graphics mode
+ TEXT="yes"
+ # select bus: serial (including USB), parallel or i2c
+ SERIAL="yes"
+ DRIVERS="$DRIVERS drv_Pertelian.o"
+
+cat >>confdefs.h <<\_ACEOF
+#define WITH_PERTELIAN 1
+_ACEOF
+
+fi
+
+
+
+if test "$PICOLCD" = "yes"; then
if test "$has_usb" = "true"; then
TEXT="yes"
GPIO="yes"
@@ -7801,7 +7820,7 @@ if test "$picoLCD" = "yes"; then
DRIVERS="$DRIVERS drv_picoLCD.o"
cat >>confdefs.h <<\_ACEOF
-#define WITH_picoLCD 1
+#define WITH_PICOLCD 1
_ACEOF
else