Bug#673567: qgis: FTBFS with GCC-4.7: 'close' was not declared in this scope

2012-05-19 Thread Steven Chamberlain
Package: src:qgis Version: 1.7.4+1.7.5~20120320-1 Severity: serious Tags: sid wheezy User: debian-gcc@lists.debian.org Usertags: ftbfs-gcc-4.7 X-Debbugs-Cc: debian-gcc@lists.debian.org Justification: fails to build from source (but built successfully in the past) Hi, qgis fails to build on

Bug#669479: (no subject)

2012-05-19 Thread Artur Rona
tags 669479 patch thanks I've prepared small patch to fix Build-Depends in debian/control. If there is no response from maintainer team, than I'm going to upload NMU. -- Pozdrawiam / Kind regards, Artur Rona diff -Nru ppl-0.11.2/debian/changelog ppl-0.11.2/debian/changelog ---

Processed: your mail

2012-05-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: tags 669479 patch Bug #669479 [src:ppl] ppl: FTBFS: ld: cannot find -lncursesw Added tag(s) patch. thanks Stopping processing here. Please contact me if you need assistance. -- 669479: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669479

Re: Bug#673567: qgis: FTBFS with GCC-4.7: 'close' was not declared in this scope

2012-05-19 Thread Steven Chamberlain
tags 673567 + patch thanks Hi, Attached is a patch which will hopefully fix this on all the affected architectures. Only tested this myself on kfreebsd-i386 though. Thanks, Regards, -- Steven Chamberlain ste...@pyro.eu.org Description: fix to build with GCC 4.7 Must include unistd.h where

Re: cbmc: FTBFS[kfreebsd,hurd]: GCC-4.7

2012-05-19 Thread Steven Chamberlain
Hi Salvatore, In src/ansi-c/c_preprocess.cpp, the #include unistd.h changed by KiBi's patch is still wrapped in #ifdef __linux__. I would think: #if defined(__linux__) || defined(__GNU__) || defined(__GLIBC__) is the best way to cover Linux/kFreeBSD/Hurd. Regards, -- Steven Chamberlain

Re: cbmc: FTBFS[kfreebsd,hurd]: GCC-4.7

2012-05-19 Thread Christoph Egger
Hi! Steven Chamberlain ste...@pyro.eu.org writes: #if defined(__linux__) || defined(__GNU__) || defined(__GLIBC__) __GLIBC__ should cover all of them alone. Or alternatively consistently checking for kernels: #if defined(__linux__) || defined(__GNU__) || defined(__FreeBSD_kernel__) Regards

Re: cbmc: FTBFS[kfreebsd,hurd]: GCC-4.7

2012-05-19 Thread Steven Chamberlain
tags 673579 + patch thanks On 19/05/12 23:02, Christoph Egger wrote: Steven Chamberlain ste...@pyro.eu.org writes: #if defined(__linux__) || defined(__GNU__) || defined(__GLIBC__) __GLIBC__ should cover all of them alone. Or alternatively consistently checking for kernels [...] Oh I see,