diff options
| author | reinelt <> | 2005-11-04 14:10:38 +0000 | 
|---|---|---|
| committer | reinelt <> | 2005-11-04 14:10:38 +0000 | 
| commit | 5d54056acb22b72beaf6304bdb8e74bb64e8b0bc (patch) | |
| tree | 9969d78f72c393e17fd73079f374c4df478d6d22 /configure | |
| parent | 0ae3194b9a56dfc809029a02d4f1ffc614fead0c (diff) | |
| download | lcd4linux-5d54056acb22b72beaf6304bdb8e74bb64e8b0bc.tar.gz | |
[lcd4linux @ 2005-11-04 14:10:38 by reinelt]
drv_Sample and drv_LPH7508
Diffstat (limited to '')
| -rwxr-xr-x | configure | 24 | 
1 files changed, 22 insertions, 2 deletions
| @@ -871,8 +871,8 @@ Optional Packages:                            BeckmannEgle, BWCT, CrystalFontz, Curses, Cwlinux,                            HD44780, LCDLinux, LCDTerm, LPH7508, M50530,                            MatrixOrbital, MilfordInstruments, Noritake, NULL, -                          PNG, PPM, RouterBoard, serdisplib, SimpleLCD, T6963, -                          Trefon, USBLCD, WincorNixdorf, X11 +                          PNG, PPM, RouterBoard, Sample, serdisplib, SimpleLCD, +                          T6963, Trefon, USBLCD, WincorNixdorf, X11    --with-plugins=<list>   choose which plugins to compile.                            type --with-plugins=list for a list                            of avaible plugins @@ -6048,6 +6048,7 @@ for driver in $drivers; do           PNG="yes"           PPM="yes"  	 ROUTERBOARD="yes" +         SAMPLE="yes"  	 SERDISPLIB="yes"           SIMPLELCD="yes"           T6963="yes" @@ -6107,6 +6108,9 @@ for driver in $drivers; do        RouterBoard)           ROUTERBOARD=$val           ;; +      Sample) +         SAMPLE=$val +         ;;        serdisplib)           SERDISPLIB=$val;           ;; @@ -6360,6 +6364,22 @@ _ACEOF  fi +if test "$SAMPLE" = "yes"; then +   # select either text or graphics mode +   TEXT="yes" +   GRAPHIC="yes" +   # select bus: serial (including USB), parallel or i2c +   SERIAL="yes" +   PARPORT="yes" +   #I2C="yes" +   DRIVERS="$DRIVERS drv_Sample.o" + +cat >>confdefs.h <<\_ACEOF +#define WITH_SAMPLE 1 +_ACEOF + +fi +  if test "$SERDISPLIB" = "yes"; then     if test "$has_serdisplib" = "true"; then        GRAPHIC="yes" | 
