configure: Avoid bashism breaking the C++ bindings

This commit is contained in:
Daniel Elstner 2015-01-31 21:07:28 +01:00
parent 57ba5f3d56
commit 1f501d72ef
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0],
[BINDINGS_CXX="no"; cxx_msg="glibmm required"]) [BINDINGS_CXX="no"; cxx_msg="glibmm required"])
# C++ bindings want stoi and stod. # 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_LANG_PUSH([C++])
AC_MSG_CHECKING([for stoi and stod]) AC_MSG_CHECKING([for stoi and stod])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <string>], AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <string>],