From e6f31f6b7949440cd735d0184c846aa2a3330f23 Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 3 Sep 2008 03:28:52 +0000 Subject: ULA200 driver by Bernhard Walle git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@892 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- drivers.m4 | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'drivers.m4') diff --git a/drivers.m4 b/drivers.m4 index 64e0cc4..9c87f77 100644 --- a/drivers.m4 +++ b/drivers.m4 @@ -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) -- cgit v1.2.3