diff options
author | reinelt <> | 2005-09-14 15:08:33 +0000 |
---|---|---|
committer | reinelt <> | 2005-09-14 15:08:33 +0000 |
commit | a3d33ca51c81e4e33e501bd2dc508c759c2511a3 (patch) | |
tree | 8ec06a2d8eb5be6f7028d0541ba29725fa2488d0 | |
parent | 50eff38fe40e9a5c833844ef66b34b087cfc56bf (diff) | |
download | lcd4linux-a3d33ca51c81e4e33e501bd2dc508c759c2511a3.tar.gz |
[lcd4linux @ 2005-09-14 15:08:32 by reinelt]
fixed drivers.m4 to link generic text driver for several displays
(thanks to Ludovic Gomez for pointing this out)
Diffstat (limited to '')
-rwxr-xr-x | configure | 5 | ||||
-rw-r--r-- | drivers.m4 | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -6187,6 +6187,7 @@ fi if test "$CURSES" = "yes"; then if test "$has_curses" = true; then + TEXT="yes" DRIVERS="$DRIVERS drv_Curses.o" DRVLIBS="$DRVLIBS $CURSES_LIBS" CPPFLAGS="$CPPFLAGS $CURSES_INCLUDES" @@ -6262,6 +6263,7 @@ _ACEOF fi if test "$MATRIXORBITAL" = "yes"; then + TEXT="yes" SERIAL="yes" DRIVERS="$DRIVERS drv_MatrixOrbital.o" @@ -6272,6 +6274,8 @@ _ACEOF fi if test "$MILINST" = "yes"; then + TEXT="yes" + SERIAL="yes" DRIVERS="$DRIVERS drv_MilfordInstruments.o" cat >>confdefs.h <<\_ACEOF @@ -6452,7 +6456,6 @@ fi # generic graphic driver if test "$GRAPHIC" = "yes"; then -: DRIVERS="$DRIVERS drv_generic_graphic.o" fi @@ -193,6 +193,7 @@ fi if test "$CURSES" = "yes"; then if test "$has_curses" = true; then + TEXT="yes" DRIVERS="$DRIVERS drv_Curses.o" DRVLIBS="$DRVLIBS $CURSES_LIBS" CPPFLAGS="$CPPFLAGS $CURSES_INCLUDES" @@ -242,12 +243,15 @@ if test "$M50530" = "yes"; then fi if test "$MATRIXORBITAL" = "yes"; then + TEXT="yes" SERIAL="yes" DRIVERS="$DRIVERS drv_MatrixOrbital.o" AC_DEFINE(WITH_MATRIXORBITAL,1,[MatrixOrbital driver]) fi if test "$MILINST" = "yes"; then + TEXT="yes" + SERIAL="yes" DRIVERS="$DRIVERS drv_MilfordInstruments.o" AC_DEFINE(WITH_MILINST,1,[Milford Instruments driver]) fi @@ -370,7 +374,6 @@ fi # generic graphic driver if test "$GRAPHIC" = "yes"; then -: DRIVERS="$DRIVERS drv_generic_graphic.o" fi |