Re: [PATCH 8/9] autoconf: Check for timer_settime

2014-09-10 Thread Karsten Blees
Am 29.08.2014 19:40, schrieb Keller, Jacob E: On Fri, 2014-08-29 at 19:26 +0200, Johannes Sixt wrote: Am 29.08.2014 18:42, schrieb Jacob Keller: From: Jonas 'Sortie' Termansen sor...@maxsi.org This function will be used in a following commit. The timer_settime function is provided in librt

Re: [PATCH 8/9] autoconf: Check for timer_settime

2014-09-10 Thread Junio C Hamano
Karsten Blees karsten.bl...@gmail.com writes: While the timer extension (timer_settime) has graduated to mandatory in the current POSIX spec, the monotonic clock extension is still optional today (i.e. not necessarily supported even on newer Unices). In contrast to this, the XSI extensions

Re: [PATCH 8/9] autoconf: Check for timer_settime

2014-09-10 Thread Keller, Jacob E
On Wed, 2014-09-10 at 14:08 -0700, Junio C Hamano wrote: Karsten Blees karsten.bl...@gmail.com writes: While the timer extension (timer_settime) has graduated to mandatory in the current POSIX spec, the monotonic clock extension is still optional today (i.e. not necessarily supported even

[PATCH 8/9] autoconf: Check for timer_settime

2014-08-27 Thread Jonas 'Sortie' Termansen
This function will be used in a following commit. The timer_settime function is provided in librt on some systems. We already use this library sometimes to get clock_gettime, so rework the logic so we don't link with it twice. This function was not previously used by git. This can cause trouble