configure: Avoid bashism breaking the C++ bindings
This commit is contained in:
parent
57ba5f3d56
commit
1f501d72ef
|
@ -396,7 +396,7 @@ PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0],
|
|||
[BINDINGS_CXX="no"; cxx_msg="glibmm required"])
|
||||
|
||||
# C++ bindings want stoi and stod.
|
||||
if test "x$BINDINGS_CXX" == "xyes"; then
|
||||
if test "x$BINDINGS_CXX" = "xyes"; then
|
||||
AC_LANG_PUSH([C++])
|
||||
AC_MSG_CHECKING([for stoi and stod])
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <string>],
|
||||
|
|
Loading…
Reference in New Issue