diff options
author | peterbailey <peterbailey@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-11-03 04:59:04 +0000 |
---|---|---|
committer | peterbailey <peterbailey@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-11-03 04:59:04 +0000 |
commit | d08bf6d19c86486b1e10e023ea2aaa5ac0f2c30c (patch) | |
tree | 83adb58a1bedcd7b4199a497160168f68be690fb /drivers.m4 | |
parent | 318733a9fb22d468e1a6db9b2de0d52bd2c1f818 (diff) | |
download | lcd4linux-d08bf6d19c86486b1e10e023ea2aaa5ac0f2c30c.tar.gz |
adding PICGraphic driver
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1049 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r-- | drivers.m4 | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -35,7 +35,7 @@ AC_ARG_WITH( [ BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux, D4D,] [ G15, GLCD2USB, HD44780, IRLCD, LCD2USB, LCDLinux, LCDTerm,] [ LPH7508, LUIse, LW_ABP, M50530, MatrixOrbital, MilfordInstruments,] - [ Noritake, NULL, PNG, PPM, Pertelian, PHAnderson, picoLCD,] + [ Noritake, NULL, PNG, PPM, Pertelian, PHAnderson, PICGraphic, picoLCD,] [ picoLCDGraphic, RouterBoard, Sample, serdisplib, ShuttleVFD,] [ SimpleLCD, st2205, T6963, Trefon, ULA200, USBLCD, USBHUB,] [ VNC, WincorNixdorf, X11], @@ -85,6 +85,7 @@ for driver in $drivers; do NULL="yes" PERTELIAN="yes" PHANDERSON="yes" + PICGRAPHIC="yes" PICOLCD="yes" PICOLCDGRAPHIC="yes" PNG="yes" @@ -185,6 +186,9 @@ for driver in $drivers; do PHAnderson) PHANDERSON=$val ;; + PICGraphic) + PICGRAPHIC=$val + ;; picoLCD) PICOLCD=$val ;; @@ -510,6 +514,14 @@ if test "$PHANDERSON" = "yes"; then AC_DEFINE(WITH_PHANDERSON,1,[PHAnderson driver]) fi +if test "$PICGRAPHIC" = "yes"; then + GRAPHIC="yes" + GPIO="yes" + SERIAL="yes" + DRIVERS="$DRIVERS drv_PICGraphic.o" + AC_DEFINE(WITH_PICGRAPHIC,1,[PICGraphic driver]) +fi + if test "$PICOLCD" = "yes"; then if test "$has_usb" = "true"; then TEXT="yes" |