Changeset 855
- Timestamp:
- 03/03/08 17:52:50 (9 months ago)
- Location:
- trunk
- Files:
-
- 6 modified
-
Makefile.am (modified) (1 diff)
-
Makefile.in (modified) (2 diffs)
-
config.h.in (modified) (2 diffs)
-
configure.in (modified) (1 diff)
-
drivers.m4 (modified) (4 diffs)
-
drv.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r843 r855 92 92 drv_RouterBoard.c \ 93 93 drv_Sample.c \ 94 drv_st2205.c \ 94 95 drv_serdisplib.c \ 95 96 drv_SimpleLCD.c \ -
trunk/Makefile.in
r843 r855 287 287 drv_RouterBoard.c \ 288 288 drv_Sample.c \ 289 drv_st2205.c \ 289 290 drv_serdisplib.c \ 290 291 drv_SimpleLCD.c \ … … 479 480 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_picoLCD.Po@am__quote@ 480 481 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_serdisplib.Po@am__quote@ 482 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_st2205.Po@am__quote@ 481 483 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evaluator.Po@am__quote@ 482 484 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash.Po@am__quote@ -
trunk/config.h.in
r844 r855 122 122 #undef HAVE_SQRT 123 123 124 /* Define to 1 if you have the <st2205.h> header file. */ 125 #undef HAVE_ST2205_H 126 124 127 /* Define to 1 if `stat' has the bug that it succeeds when given the 125 128 zero-length file name argument. */ … … 488 491 /* SimpleLCD driver */ 489 492 #undef WITH_SIMPLELCD 493 494 /* st2205 driver */ 495 #undef WITH_ST2205 490 496 491 497 /* T6963 driver */ -
trunk/configure.in
r844 r855 78 78 AC_CHECK_HEADERS(serdisplib/serdisp.h, [has_serdisplib="true"], [has_serdisplib="false"]) 79 79 80 # check for st2205 libs 81 AC_CHECK_HEADERS(st2205.h, [has_st2205="true"], [has_st2205="false"]) 82 80 83 # check for LCD-Linux 81 84 AC_CHECK_HEADERS(linux/lcd-linux.h linux/hd44780.h, [has_lcd_linux="true"], [has_lcd_linux="false"; break]) -
trunk/drivers.m4
r844 r855 37 37 [ LUIse, M50530, MatrixOrbital, MilfordInstruments,] 38 38 [ Noritake, NULL, PNG, PPM, Pertelian, picoLCD, RouterBoard,] 39 [ Sample, serdisplib, SimpleLCD, T6963, Trefon, USBLCD,]40 [ USB HUB, WincorNixdorf, X11],39 [ Sample, serdisplib, SimpleLCD, st2205, T6963, Trefon,] 40 [ USBLCD, USBHUB, WincorNixdorf, X11], 41 41 drivers=$withval, 42 42 drivers=all … … 84 84 ROUTERBOARD="yes" 85 85 SAMPLE="yes" 86 ST2205="yes" 86 87 SERDISPLIB="yes" 87 88 SIMPLELCD="yes" … … 177 178 SIMPLELCD=$val 178 179 ;; 180 st2205) 181 ST2205=$val 182 ;; 179 183 T6963) 180 184 T6963=$val … … 479 483 DRIVERS="$DRIVERS drv_SimpleLCD.o" 480 484 AC_DEFINE(WITH_SIMPLELCD,1,[SimpleLCD driver]) 485 fi 486 487 if test "$ST2205" = "yes"; then 488 if test "$has_st2205" = "true"; then 489 GRAPHIC="yes" 490 DRIVERS="$DRIVERS drv_st2205.o" 491 DRVLIBS="$DRVLIBS -L/usr/local/lib -lst2205" 492 AC_DEFINE(WITH_ST2205,1,[st2205 driver]) 493 else 494 AC_MSG_WARN(st2205.h not found: st2205 driver disabled) 495 fi 481 496 fi 482 497 -
trunk/drv.c
r843 r855 72 72 extern DRIVER drv_RouterBoard; 73 73 extern DRIVER drv_Sample; 74 extern DRIVER drv_st2205; 74 75 extern DRIVER drv_serdisplib; 75 76 extern DRIVER drv_SimpleLCD; … … 159 160 #ifdef WITH_SAMPLE 160 161 &drv_Sample, 162 #endif 163 #ifdef WITH_ST2205 164 &drv_st2205, 161 165 #endif 162 166 #ifdef WITH_SERDISPLIB
