diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-09-03 03:28:52 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-09-03 03:28:52 +0000 |
commit | e6f31f6b7949440cd735d0184c846aa2a3330f23 (patch) | |
tree | 69ec79fea0201a50a91b8fde5023a61863db524c /drivers.m4 | |
parent | 1285008c5f75c28d6304ba984c432992c450ba3a (diff) | |
download | lcd4linux-e6f31f6b7949440cd735d0184c846aa2a3330f23.tar.gz |
ULA200 driver by Bernhard Walle
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@892 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r-- | drivers.m4 | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -37,7 +37,7 @@ AC_ARG_WITH( [ LUIse, M50530, MatrixOrbital, MilfordInstruments,] [ Noritake, NULL, PNG, PPM, Pertelian, picoLCD, picoLCDGraphic,] [ RouterBoard, Sample, serdisplib, SimpleLCD, st2205, T6963, Trefon,] - [ USBLCD, USBHUB, WincorNixdorf, X11], + [ ULA200, USBLCD, USBHUB, WincorNixdorf, X11], drivers=$withval, drivers=all ) @@ -199,6 +199,9 @@ for driver in $drivers; do Trefon) Trefon=$val ;; + ULA200) + ULA200=$val + ;; USBHUB) USBHUB=$val ;; @@ -234,6 +237,7 @@ KEYPAD="no" # generic libraries LIBUSB="no" +LIBFTDI="no" if test "$BECKMANNEGLE" = "yes"; then TEXT="yes" @@ -561,6 +565,14 @@ if test "$Trefon" = "yes"; then fi fi +if test "$ULA200" = "yes"; then + TEXT="yes" + LIBUSB="yes" + LIBFTDI="yes" + DRIVERS="$DRIVERS drv_ula200.o" + AC_DEFINE(WITH_ULA200,1,[ULA200 driver]) +fi + if test "$USBHUB" = "yes"; then if test "$has_usb" = "true"; then GPIO="yes" @@ -666,5 +678,10 @@ if test "$LIBUSB" = "yes"; then DRVLIBS="$DRVLIBS -lusb" fi +# libftdi +if test "$LIBFTDI" = "yes"; then + DRVLIBS="$DRVLIBS -lftdi" +fi + AC_SUBST(DRIVERS) AC_SUBST(DRVLIBS) |