kopia lustrzana https://gitlab.com/sane-project/backends
Added warning message that's printed when libusb or its header file is not
available.merge-requests/1/head
rodzic
c3a9d77397
commit
f59a22e563
|
@ -3,6 +3,8 @@
|
|||
* README: Mention in addition to the listed libraries, their
|
||||
header files are also neccessary. A missing usb.h is a common
|
||||
problem when building SANE (--> no USB support).
|
||||
* configure configure.in: Added warning message that's printed
|
||||
when libusb or its header file is not available.
|
||||
|
||||
2005-09-22 Mattias Ellert <mattias.ellert@tsl.uu.se>
|
||||
|
||||
|
|
Plik diff jest za duży
Load Diff
12
configure.in
12
configure.in
|
@ -566,6 +566,18 @@ if test "$SELECTED_BACKENDS" != "" ; then
|
|||
echo "*** connected to your local computer won't be supported. Only a network"
|
||||
echo "*** connection to a remote host is possible."
|
||||
fi
|
||||
if test "$HAVE_LIBUSB" != "yes" && test "$USE_LIBUSB" = "yes" ; then
|
||||
echo "*** Warning: sane-backends will be built without libusb support. There may"
|
||||
echo "*** be valid reasons to do so, e.g. if you don't use USB scanners or on"
|
||||
echo "*** platforms without libusb support but generally this means that you"
|
||||
echo "*** can't use USB devices with SANE. The most probable cause is that"
|
||||
if test "${ac_cv_header_usb_h}" != "yes"; then
|
||||
echo "*** the libusb header file usb.h is not installed. If you use Linux"
|
||||
echo "*** you may need a package called 'libusb-dev', 'libusb-devel' or similar."
|
||||
else
|
||||
echo "*** libusb is not installed at all or is too old. See README."
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "****************************************************************"
|
||||
echo "* Please be sure to read file PROBLEMS in this directory *"
|
||||
|
|
Ładowanie…
Reference in New Issue