Help with making a port C11 compliant

2016-05-06 Thread Montgomery-Smith, Stephen
Here is my problem: http://beefy2.nyi.freebsd.org/data/93amd64-default/414631/logs/GiNaC-1.7.0.log the configure script says: configure: error: Standard ISO C++ headers are missing In the Makefile I have the line: USES= compiler:c++11-lang Is there anything else I need to do? I should

Re: Help with making a port C11 compliant

2016-05-06 Thread Brooks Davis
On Fri, May 06, 2016 at 04:16:54PM +, Montgomery-Smith, Stephen wrote: > Here is my problem: > http://beefy2.nyi.freebsd.org/data/93amd64-default/414631/logs/GiNaC-1.7.0.log > > the configure script says: > configure: error: Standard ISO C++ headers are missing > > In the Makefile I have the

Re: Help with making a port C11 compliant

2016-05-06 Thread Walter Schwarzenfeld
Write in the Makefiles of math/cln and math/GiNaC USE_GCC= 4.7 (you can also use 4.8 or 5) and CXXFLAGS+= -D_GLIBCXX_USE_C99 I have tested it with 4.7 and 5 in the port and with gcc5 with poudriere in a 93amd64 jail (the test with 4.7 is running in the moment). And it builds fine.

Re: Help with making a port C11 compliant

2016-05-06 Thread Montgomery-Smith, Stephen
On 05/06/2016 04:35 PM, Walter Schwarzenfeld wrote: > Write in the Makefiles of math/cln and math/GiNaC > > USE_GCC= 4.7 > (you can also use 4.8 or 5) > and > CXXFLAGS+= -D_GLIBCXX_USE_C99 > > I have tested it with 4.7 and 5 in the port and with gcc5 with poudriere > in a 93amd64 jail (t

Re: Help with making a port C11 compliant

2016-05-06 Thread Walter Schwarzenfeld
Now the test with gcc47 is finish,it does not work with poudriere. But gcc48 and gcc5. The /CXXFLAGS+= -D_GLIBCXX_USE_C99 flag is used in two dozens of ports (if you look in the portstree) for same or similiar reasons, I think it will be ok./ ___ f