From bde1bee24e26b586b20eb3813396e2d49f1aee91 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Wed, 9 Sep 2015 01:54:49 +0200 Subject: [PATCH] Make it compile on cygwin in c++11 mode When using -std=c++11, the cygwin compiler automatically defines __STRICT_ANSI__ which is used as a guard for not declaring essential unix standard calls such as setenv, popen, etc. As a result, compilation stops with errors such as "xxxx has not been declared". By undefining the guard, compilation succeeds and lyx works Ok. --- config/lyxinclude.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4 index 67a110b989..057caf491c 100644 --- a/config/lyxinclude.m4 +++ b/config/lyxinclude.m4 @@ -362,7 +362,8 @@ if test x$GXX = xyes; then dnl the deprecated-register warning is very annoying with Qt4.x right now. AM_CXXFLAGS="$AM_CXXFLAGS -std=c++11 -Wno-deprecated-register";; *) - AM_CXXFLAGS="$AM_CXXFLAGS -std=c++11";; + AM_CXXFLAGS="$AM_CXXFLAGS -std=c++11" + AS_CASE([$host], [*cygwin*], [AM_CXXFLAGS="$AM_CXXFLAGS -U__STRICT_ANSI__"]);; esac fi -- 2.39.5