Applied Nathan Yawn's (natey@hcis.net) patch to add a driver for the BayRAD
display. The patch applied cleanly, and compiled properly. At least, "it worked for me." :) I don't have such a display, thus I cannot test that the driver actually works, but it at least doesn't do nasty things or break the compile. Thanks, Nathan!
This commit is contained in:
+6
-2
@@ -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,lb216])
|
||||
drivers=[mtxorb,cfontz,curses,text,lb216,bayrad])
|
||||
|
||||
if test "$drivers" = "all"; then
|
||||
drivers=[mtxorb,cfontz,curses,text,lb216,hd44780,joy,irman,lircin]
|
||||
drivers=[mtxorb,cfontz,curses,text,lb216,hd44780,joy,irman,lircin,bayrad]
|
||||
AC_MSG_RESULT(all)
|
||||
fi
|
||||
|
||||
@@ -22,6 +22,10 @@ fi
|
||||
DRIVERS="$DRIVERS MtxOrb.o"
|
||||
AC_DEFINE(MTXORB_DRV)
|
||||
;;
|
||||
bayrad)
|
||||
DRIVERS="$DRIVERS bayrad.o"
|
||||
AC_DEFINE(BAYRAD_DRV)
|
||||
;;
|
||||
cfontz)
|
||||
DRIVERS="$DRIVERS CFontz.o"
|
||||
AC_DEFINE(CFONTZ_DRV)
|
||||
|
||||
Reference in New Issue
Block a user