diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2007-01-16 20:52:19 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2007-01-16 20:52:19 +0000 |
commit | f13c0ea57d574774155653af15cc51ebd696f81e (patch) | |
tree | 4da63827109ed4d624f7e139d88eb02a56bea2d9 /configure | |
parent | eb3c38305336eb1cf10bf39b72127ccff7b836ec (diff) | |
download | lcd4linux-f13c0ea57d574774155653af15cc51ebd696f81e.tar.gz |
new driver 'HD44780-I2C'
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@739 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rwxr-xr-x | configure | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -7272,6 +7272,9 @@ for driver in $drivers; do HD44780) HD44780=$val ;; + HD44780-I2C) + HD44780_I2C=$val + ;; LCD2USB) LCD2USB=$val ;; @@ -7468,6 +7471,18 @@ _ACEOF fi +if test "$HD44780_I2C" = "yes"; then + TEXT="yes" + I2C="yes" + GPIO="yes" + DRIVERS="$DRIVERS drv_HD44780.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_HD44780 1 +_ACEOF + +fi + if test "$LCD2USB" = "yes"; then if test "$has_usb" = "true"; then TEXT="yes" @@ -7818,11 +7833,21 @@ fi # generic parport driver if test "$PARPORT" = "yes"; then DRIVERS="$DRIVERS drv_generic_parport.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_PARPORT 1 +_ACEOF + fi # generic serial driver if test "$SERIAL" = "yes"; then DRIVERS="$DRIVERS drv_generic_serial.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_SERIAL 1 +_ACEOF + fi # generic i2c driver |