Configure: 2 small in-string quote changes

This should be harmless and just fix syntax hilighting is some editors (geany at least)
This commit is contained in:
Davide Andreoli 2016-06-04 10:54:40 +02:00
parent 1c269cf24a
commit d77dd8d9f1
1 changed files with 2 additions and 2 deletions

View File

@ -1793,7 +1793,7 @@ AC_COMPILE_IFELSE(
int i = isfinite(0); int i = isfinite(0);
]])], ]])],
[ [
AC_DEFINE(HAVE_ISFINITE, 1, [Define to 1 if you have `isfinite', as a function or macro.]) AC_DEFINE(HAVE_ISFINITE, 1, [Define to 1 if you have 'isfinite', as a function or macro.])
have_isfinite="yes" have_isfinite="yes"
], ],
[have_isfinite="no"]) [have_isfinite="no"])
@ -1857,7 +1857,7 @@ elif test "x${have_setjmp}" = "xyes"; then
AC_DEFINE(USE_SETJMP, 1, [Define to 1 if you have setjmp/longjmp functions.]) AC_DEFINE(USE_SETJMP, 1, [Define to 1 if you have setjmp/longjmp functions.])
EFL_ADD_FEATURE([system], [coroutine], [setjmp]) EFL_ADD_FEATURE([system], [coroutine], [setjmp])
else else
AC_MSG_ERROR([You don't have a working way to implement coroutine. Exiting...]) AC_MSG_ERROR([You do not have a working way to implement coroutine. Exiting...])
fi fi
### Check availability ### Check availability