This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1445
-- gerrit commit 2c7c6dd8d3c6a5f306661e31f5f04f911c9c11a7 Author: Spencer Oliver <[email protected]> Date: Fri Jun 14 20:59:30 2013 +0100 build: add missing configure quotes Change-Id: I14abb24292d4c2ff088c7b95773f73ceac3287cd Signed-off-by: Spencer Oliver <[email protected]> diff --git a/configure.ac b/configure.ac index 95c3eb2..6e3f986 100644 --- a/configure.ac +++ b/configure.ac @@ -1199,10 +1199,10 @@ fi use_libusb1=no if test $need_usb = yes -o $need_usb_ng = yes; then AC_CHECK_HEADER([libusb-1.0/libusb.h], [ - AC_DEFINE(HAVE_LIBUSB1, 1, [Define if you have libusb-1.x]) + AC_DEFINE([HAVE_LIBUSB1], [1], [Define if you have libusb-1.x]) use_libusb1=yes AC_SEARCH_LIBS([libusb_error_name], [usb-1.0], - [AC_DEFINE(HAVE_LIBUSB_ERROR_NAME, 1, [Define if your libusb has libusb_error_name()])], + [AC_DEFINE([HAVE_LIBUSB_ERROR_NAME], [1], [Define if your libusb has libusb_error_name()])], [AC_MSG_WARN([libusb-1.x older than 1.0.9 detected, consider updating])]) ], [ if test $need_usb_ng = yes; then -- ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
