Re: [Qemu-devel] [PATCH v4] configure: properly check if -lrt and -lm is needed

2012-09-01 Thread Blue Swirl
On Wed, Aug 29, 2012 at 6:41 AM, Natanael Copa nc...@alpinelinux.org wrote: On Tue, 28 Aug 2012 17:16:18 + Blue Swirl blauwir...@gmail.com wrote: On Tue, Aug 28, 2012 at 7:33 AM, Natanael Copa nc...@alpinelinux.org wrote: On Tue, 21 Aug 2012 18:12:05 + Blue Swirl

Re: [Qemu-devel] [PATCH v4] configure: properly check if -lrt and -lm is needed

2012-08-29 Thread Natanael Copa
On Tue, 28 Aug 2012 17:16:18 + Blue Swirl blauwir...@gmail.com wrote: On Tue, Aug 28, 2012 at 7:33 AM, Natanael Copa nc...@alpinelinux.org wrote: On Tue, 21 Aug 2012 18:12:05 + Blue Swirl blauwir...@gmail.com wrote: Now I get this on mingw32: config-host.mak is out-of-date,

Re: [Qemu-devel] [PATCH v4] configure: properly check if -lrt and -lm is needed

2012-08-28 Thread Natanael Copa
On Tue, 21 Aug 2012 18:12:05 + Blue Swirl blauwir...@gmail.com wrote: Now I get this on mingw32: config-host.mak is out-of-date, running configure Error: librt check failed Any news on the v4 patch, which should fix this? Thanks!

Re: [Qemu-devel] [PATCH v4] configure: properly check if -lrt and -lm is needed

2012-08-28 Thread Blue Swirl
On Tue, Aug 28, 2012 at 7:33 AM, Natanael Copa nc...@alpinelinux.org wrote: On Tue, 21 Aug 2012 18:12:05 + Blue Swirl blauwir...@gmail.com wrote: Now I get this on mingw32: config-host.mak is out-of-date, running configure Error: librt check failed Any news on the v4 patch, which

[Qemu-devel] [PATCH v4] configure: properly check if -lrt and -lm is needed

2012-08-22 Thread Natanael Copa
Fixes build against uClibc. uClibc provides 2 versions of clock_gettime(), one with realtime support and one without (this is so you can avoid linking in -lrt unless actually needed). This means that the clock_gettime() don't need -lrt. We still need it for timer_create() so we check for this