Skip to content

Commit

Permalink
8320663: Fix C syntax in LIB_SETUP_HSDIS_BINUTILS
Browse files Browse the repository at this point in the history
Co-authored-by: Galder Zamarreño <galder@openjdk.org>
Reviewed-by: rehn
  • Loading branch information
magicus and galderz committed Nov 23, 2023
1 parent 3787ff8 commit beaa79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/autoconf/lib-hsdis.m4
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ AC_DEFUN([LIB_SETUP_HSDIS_BINUTILS],
fi
AC_MSG_CHECKING([Checking binutils API])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include $disasm_header],[[void foo() {init_disassemble_info(0, 0, 0, 0);}]])],
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include $disasm_header],[[init_disassemble_info(0, 0, 0, 0);]])],
[
AC_MSG_RESULT([New API])
HSDIS_CFLAGS="$HSDIS_CFLAGS -DBINUTILS_NEW_API"
Expand Down

1 comment on commit beaa79c

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.