1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2025-04-21 12:27:27 +03:00

Use pkg-config to detect libusb-1.0.

This commit is contained in:
Peter Zotov
2011-04-07 14:13:10 +04:00
parent c26a0ce1da
commit fdbf94c903
2 changed files with 4 additions and 7 deletions

View File

@@ -49,10 +49,7 @@ AC_CHECK_LIB([usb], [main], [], [
echo "Error! You need to have libusb-0.1. \n" echo "Error! You need to have libusb-0.1. \n"
echo "Maybe run 'sudo apt-get install libusb-dev' under debian" echo "Maybe run 'sudo apt-get install libusb-dev' under debian"
exit -1 ]) exit -1 ])
AC_CHECK_LIB([usb-1.0], [main], [], [ PKG_CHECK_MODULES([LIBUSB1], [libusb-1.0])
echo "Error! You need to have libusb-1.0. \n"
echo "Maybe run 'sudo apt-get install libusb1.0-0-dev' under debian"
exit -1 ])
AC_ARG_WITH([readline], AC_ARG_WITH([readline],
[AS_HELP_STRING([--with-readline], [AS_HELP_STRING([--with-readline],
@@ -73,8 +70,8 @@ AS_IF([test "x$with_readline" != xno],
fi fi
], -lncurses)]) ], -lncurses)])
LIBS="$LIBS $USB_LIBS $READLINE_LIBS" LIBS="$LIBS $USB_LIBS $READLINE_LIBS $LIBUSB1_LIBS"
CFLAGS="$CFLAGS $USB_CFLAGS" CFLAGS="$CFLAGS $USB_CFLAGS $LIBUSB1_CFLAGS"
# Checks for header files. # Checks for header files.
AC_HEADER_STDC AC_HEADER_STDC

2
jzboot

Submodule jzboot updated: 8b4338fc90...04ed523633