Skip to content

Commit f1520b7

Browse files
committed
When detecting C++ version, ] and ) was out of order in configure.ac. This only became problematic in autoconf 2.72.
Fixes #113
1 parent 930a25a commit f1520b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

configure.ac

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,10 +857,9 @@ AS_IF([test $ax_cv_cxx_compile_cxx17__std_cpp17 == "yes"],
857857
[AC_DEFINE([HAVE_CXX14])],
858858
[AX_CXX_COMPILE_STDCXX_11([noext], [optional])
859859
AS_IF([test $ax_cv_cxx_compile_cxx11__std_cpp11 == "yes"],
860-
[AC_DEFINE([HAVE_CXX11])]
860+
[AC_DEFINE([HAVE_CXX11])])
861861
])
862862
])
863-
)
864863
AC_ARG_VAR([XA], [6502 assembler - must be full path])
865864
AC_PATH_PROG([XA],[xa])
866865
AS_IF([test -z "$XA"], [AC_MSG_ERROR([xa is needed for compiling 6502 assembler used by libsidplayfp])])

0 commit comments

Comments
 (0)