Changeset 1053

Show
Ignore:
Timestamp:
05/29/08 09:56:24 (6 months ago)
Author:
alonbl
Message:

Warn about missing libusb only in Linux

By David Imhoff

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r1046 r1053  
    489489EOF 
    490490 
    491 if test "${enable_usb}" != "yes"; then 
    492  
    493 cat <<EOF 
     491# Only Linux uses libusb 
     492case "${host}" in 
     493*-*-linux*) 
     494        if test "${enable_usb}" != "yes"; then 
     495 
     496        cat <<EOF 
    494497 
    495498Without libusb coldplugging will work in basic way, 
     
    500503EOF 
    501504 
    502 fi 
     505        fi 
     506;; 
     507esac