From: openocd-gerrit <ope...@us...> - 2025-08-02 13:11:38
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 6bc2c585960d57c40792d072b38da0834d1e72f9 (commit) from 374a1f99832cbeb5eb345ed6c497b7abe3850f68 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6bc2c585960d57c40792d072b38da0834d1e72f9 Author: R. Diez <rdi...@rd...> Date: Sun Jul 20 10:39:02 2025 +0200 configure.ac: Remove useless --enable-verbose-usb-io _DEBUG_USB_IO_ was not actually used anywhere. Its last user was the old ft2232 driver removed in Nov 2016 with commit cc2d4f015f72d7c30d613b50572eb9f31fac515a ("Remove since long deprecated ft2232 driver"). Change-Id: I1a98db7c7b03a89cc9347c0a66ec2106d2168c3f Signed-off-by: R. Diez <rdi...@rd...> Reviewed-on: https://review.openocd.org/c/openocd/+/9002 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/configure.ac b/configure.ac index e05aa6ac8..e7f797608 100644 --- a/configure.ac +++ b/configure.ac @@ -262,34 +262,21 @@ AS_IF([test "x$enable_gcov" = "xyes"], [ AC_DEFINE([USE_GCOV], [0], [0 to leave coverage collection disabled.]) ]) -# set default verbose options, overridden by following options -debug_usb_io=no +# set default for debug_usb_comms, overridden by following options debug_usb_comms=no AC_ARG_ENABLE([verbose], AS_HELP_STRING([--enable-verbose], [Enable verbose JTAG I/O messages (for debugging).]), [ - debug_usb_io=$enableval debug_usb_comms=$enableval ], []) -AC_ARG_ENABLE([verbose_usb_io], - AS_HELP_STRING([--enable-verbose-usb-io], - [Enable verbose USB I/O messages (for debugging)]), - [debug_usb_io=$enableval], []) - AC_ARG_ENABLE([verbose_usb_comms], AS_HELP_STRING([--enable-verbose-usb-comms], [Enable verbose USB communication messages (for debugging)]), [debug_usb_comms=$enableval], []) -AC_MSG_CHECKING([whether to enable verbose USB I/O messages]); -AC_MSG_RESULT([$debug_usb_io]) -AS_IF([test "x$debug_usb_io" = "xyes"], [ - AC_DEFINE([_DEBUG_USB_IO_],[1], [Print verbose USB I/O messages]) -]) - AC_MSG_CHECKING([whether to enable verbose USB communication messages]); AC_MSG_RESULT([$debug_usb_comms]) AS_IF([test "x$debug_usb_comms" = "xyes"], [ ----------------------------------------------------------------------- Summary of changes: configure.ac | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) hooks/post-receive -- Main OpenOCD repository |