diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 14 insertions, 6 deletions
@@ -704,14 +704,22 @@ int main(void) ! if ! conftest ; then - printf "failed\n\n" - printf "Errors from compilation: \n\n" - cat conftest.err - exit 1 + printf "failed\n" + printf "Checking whether the failure is due to a requirement to use C99 ... " + if conftest EXTRA_FLAGS=-std=c99 ; then + printf "yes\n" + lang_flags="$(echo "$lang_flags" | sed -e 's/-ansi/-std=c99/')" + else + printf "no\n\n" + conftest && true + printf "Errors from compilation: \n\n" + cat conftest.err + exit 1 + fi +else + printf "okay\n" fi -printf "okay\n" - printf "Checking whether executables have that idiotic .exe suffix ... " if ls conftest.exe > /dev/null 2>&1 ; then |