BUILD: threads: only assign the clock_id when supported

I took extreme care to always check for _POSIX_THREAD_CPUTIME before
manipulating clock_id, except at one place (run_thread_poll_loop) as
found by Manu, breaking Solaris. Now fixed, no backport needed.
diff --git a/src/haproxy.c b/src/haproxy.c
index eae0965..76d2aa0 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -2498,11 +2498,13 @@
 
 	ha_set_tid((unsigned long)data);
 
+#if defined(_POSIX_TIMERS) && defined(_POSIX_THREAD_CPUTIME)
 #ifdef USE_THREAD
 	pthread_getcpuclockid(pthread_self(), &ti->clock_id);
 #else
 	ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
 #endif
+#endif
 
 	tv_update_date(-1,-1);