From 4e1eaa7205d8b7fbc64dc685d864b385a25602be Mon Sep 17 00:00:00 2001 From: reinelt Date: Mon, 31 May 2004 16:39:06 +0000 Subject: [lcd4linux @ 2004-05-31 16:39:05 by reinelt] added NULL display driver (for debugging/profiling purposes) added backlight/contrast initialisation for matrixOrbital added Backlight initialisation for Cwlinux git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@452 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- configure | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 2f9a299..f8604f0 100755 --- a/configure +++ b/configure @@ -869,7 +869,7 @@ Optional Packages: possible drivers are: BeckmannEgle, CrystalFontz, Curses, Cwlinux, HD44780, M50530, T6963, USBLCD, MatrixOrbital, - MilfordInstruments, PNG, PPM, X11 + MilfordInstruments, NULL, PNG, PPM, X11 --with-plugins= choose which plugins to compile. type --with-plugins=list for a list of avaible plugins @@ -5420,6 +5420,7 @@ for driver in $drivers; do USBLCD="yes" MATRIXORBITAL="yes" MILINST="yes" + NULL="yes" PALMPILOT="yes" PNG="yes" PPM="yes" @@ -5443,6 +5444,9 @@ for driver in $drivers; do M50530) M50530=$val ;; + NULL) + NULL=$val; + ;; T6963) T6963=$val ;; @@ -5482,7 +5486,6 @@ GRAPHIC="no" IMAGE="no" if test "$BECKMANNEGLE" = "yes"; then -# DRIVERS="$DRIVERS drv_BeckmannEgle.lo" DRIVERS="$DRIVERS drv_BeckmannEgle.o" cat >>confdefs.h <<\_ACEOF @@ -5494,7 +5497,6 @@ fi if test "$CRYSTALFONTZ" = "yes"; then TEXT="yes" SERIAL="yes" -# DRIVERS="$DRIVERS drv_Crystalfontz.lo" DRIVERS="$DRIVERS drv_Crystalfontz.o" cat >>confdefs.h <<\_ACEOF @@ -5505,7 +5507,6 @@ fi if test "$CURSES" = "yes"; then if test "$has_curses" = true; then -# DRIVERS="$DRIVERS drv_Curses.lo" DRIVERS="$DRIVERS drv_Curses.o" DRVLIBS="$DRVLIBS $CURSES_LIBS" CPPFLAGS="$CPPFLAGS $CURSES_INCLUDES" @@ -5523,7 +5524,6 @@ fi if test "$CWLINUX" = "yes"; then TEXT="yes" SERIAL="yes" -# DRIVERS="$DRIVERS drv_Cwlinux.lo" DRIVERS="$DRIVERS drv_Cwlinux.o" cat >>confdefs.h <<\_ACEOF @@ -5535,7 +5535,6 @@ fi if test "$HD44780" = "yes"; then TEXT="yes" PARPORT="yes" -# DRIVERS="$DRIVERS drv_HD44780.lo" DRIVERS="$DRIVERS drv_HD44780.o" cat >>confdefs.h <<\_ACEOF @@ -5547,7 +5546,6 @@ fi if test "$M50530" = "yes"; then TEXT="yes" PARPORT="yes" -# DRIVERS="$DRIVERS drv_M50530.lo" DRIVERS="$DRIVERS drv_M50530.o" cat >>confdefs.h <<\_ACEOF @@ -5558,7 +5556,6 @@ fi if test "$MATRIXORBITAL" = "yes"; then SERIAL="yes" -# DRIVERS="$DRIVERS drv_MatrixOrbital.lo" DRIVERS="$DRIVERS drv_MatrixOrbital.o" cat >>confdefs.h <<\_ACEOF @@ -5568,7 +5565,6 @@ _ACEOF fi if test "$MILINST" = "yes"; then -# DRIVERS="$DRIVERS drv_MilfordInstruments.lo" DRIVERS="$DRIVERS drv_MilfordInstruments.o" cat >>confdefs.h <<\_ACEOF @@ -5577,6 +5573,15 @@ _ACEOF fi +if test "$NULL" = "yes"; then + DRIVERS="$DRIVERS drv_NULL.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_NULL 1 +_ACEOF + +fi + if test "$PNG" = "yes"; then if test "$has_gd" = "true"; then GRAPHIC="yes" @@ -5604,14 +5609,12 @@ _ACEOF fi if test "$IMAGE" = "yes"; then -# DRIVERS="$DRIVERS drv_Image.lo" DRIVERS="$DRIVERS drv_Image.o" fi if test "$T6963" = "yes"; then GRAPHIC="yes" PARPORT="yes" -# DRIVERS="$DRIVERS drv_T6963.lo" DRIVERS="$DRIVERS drv_T6963.o" cat >>confdefs.h <<\_ACEOF @@ -5623,7 +5626,6 @@ fi if test "$USBLCD" = "yes"; then TEXT="yes" SERIAL="yes" -# DRIVERS="$DRIVERS drv_USBLCD.lo" DRIVERS="$DRIVERS drv_USBLCD.o" cat >>confdefs.h <<\_ACEOF @@ -5638,7 +5640,6 @@ if test "$X11" = "yes"; then echo "$as_me: WARNING: X11 headers or libraries not available: X11 driver disabled" >&2;} else GRAPHIC="yes" -# DRIVERS="$DRIVERS drv_X11.lo" DRIVERS="$DRIVERS drv_X11.o" DRVLIBS="$DRVLIBS -L$ac_x_libraries -lX11" @@ -5657,26 +5658,22 @@ fi # generic text driver if test "$TEXT" = "yes"; then -# DRIVERS="$DRIVERS drv_generic_text.lo" DRIVERS="$DRIVERS drv_generic_text.o" fi # generic graphic driver if test "$GRAPHIC" = "yes"; then : -# DRIVERS="$DRIVERS drv_generic_graphic.lo" DRIVERS="$DRIVERS drv_generic_graphic.o" fi # generic parport driver if test "$PARPORT" = "yes"; then -# DRIVERS="$DRIVERS drv_generic_parport.lo" DRIVERS="$DRIVERS drv_generic_parport.o" fi # generic serial driver if test "$SERIAL" = "yes"; then -# DRIVERS="$DRIVERS drv_generic_serial.lo" DRIVERS="$DRIVERS drv_generic_serial.o" fi -- cgit v1.2.3