Thanks to Chris Debenham <chris.debenham@aus.sun.com>, the LCDproc server

process LCDd now compiles and runs properly on Solaris! Additionally, he
has provided a new driver for a 16x2 LCD made by an Australian company.

I've compiled and executed this new code on a Solaris 2.6 box, and while I
don't have the display the new driver uses, LCDd tries to use it anyway,
fails (since the device isn't installed), and continues running, so this
looks solid!
This commit is contained in:
William Ferrell
2000-11-29 18:48:53 +00:00
parent f150f213bf
commit 82764f08e3
14 changed files with 683 additions and 5 deletions
+6 -2
View File
@@ -6,10 +6,10 @@ AC_ARG_ENABLE(drivers,
[ drivers may be separated with commas.]
[ \"all\" compiles all drivers],
drivers="$enableval",
drivers=[mtxorb,cfontz,curses,text])
drivers=[mtxorb,cfontz,curses,text,lb216])
if test "$drivers" = "all"; then
drivers=[mtxorb,cfontz,curses,text,hd44780,joy,irman,lircin]
drivers=[mtxorb,cfontz,curses,text,lb216,hd44780,joy,irman,lircin]
AC_MSG_RESULT(all)
fi
@@ -41,6 +41,10 @@ fi
DRIVERS="$DRIVERS text.o"
AC_DEFINE(TEXT_DRV)
;;
lb216)
DRIVERS="$DRIVERS lb216.o"
AC_DEFINE(LB216_DRV)
;;
hd44780)
DRIVERS="$DRIVERS hd44780.o hd44780-4bit.o hd44780-ext8bit.o lcd_sem.o hd44780-serialLpt.o hd44780-winamp.o"
AC_DEFINE(HD44780_DRV)