diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-08 19:35:22 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-08 19:35:22 +0000 |
commit | 8029d9e8c20c56b5013ff3ce2a203084e12dd638 (patch) | |
tree | 305ad5e9c770cbeb44bf0367d64b1ce1d89bf661 /configure | |
parent | 0577f2c47263a4317a93c753f0e09269e67c06d9 (diff) | |
download | lcd4linux-8029d9e8c20c56b5013ff3ce2a203084e12dd638.tar.gz |
[lcd4linux @ 2006-08-08 19:35:21 by reinelt]
USBHUB driver from Ernst Bachmann
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@683 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -1307,7 +1307,7 @@ Optional Packages: LUIse, M50530, MatrixOrbital, MilfordInstruments, Noritake, NULL, PNG, PPM, RouterBoard, Sample, serdisplib, SimpleLCD, T6963, Trefon, USBLCD, - WincorNixdorf, X11 + USBHUB, WincorNixdorf, X11 --with-plugins=<list> choose which plugins to compile. type --with-plugins=list for a list of avaible plugins @@ -7603,6 +7603,7 @@ for driver in $drivers; do SIMPLELCD="yes" T6963="yes" Trefon="yes" + USBHUB="yes" USBLCD="yes" WINCORNIXDORF="yes" X11="yes" @@ -7685,6 +7686,9 @@ for driver in $drivers; do Trefon) Trefon=$val ;; + USBHUB) + USBHUB=$val + ;; USBLCD) USBLCD=$val ;; @@ -8066,6 +8070,22 @@ echo "$as_me: WARNING: usb.h not found: Trefon driver disabled" >&2;} fi fi +if test "$USBHUB" = "yes"; then + if test "$has_usb" = "true"; then + GPIO="yes" + DRIVERS="$DRIVERS drv_USBHUB.o" + LIBUSB="yes" + +cat >>confdefs.h <<\_ACEOF +#define WITH_USBHUB 1 +_ACEOF + + else + { echo "$as_me:$LINENO: WARNING: usb.h not found: USB-Hub driver disabled" >&5 +echo "$as_me: WARNING: usb.h not found: USB-Hub driver disabled" >&2;} + fi +fi + if test "$USBLCD" = "yes"; then TEXT="yes" SERIAL="yes" |