Hi,

It seems to me there's a missing #ifndef HAVE_CLOCK_GETTIME in bin/varnishd/cache_backend.c. Trivial patch attached, if at all needed.

Thanks,
--
Pierre Queinnec
Architecte - Zenika
http://www.zenika.com
Index: bin/varnishd/cache_backend.c
===================================================================
--- bin/varnishd/cache_backend.c        (revision 1367)
+++ bin/varnishd/cache_backend.c        (working copy)
@@ -48,6 +48,10 @@
 #include <sys/select.h>
 #include <sys/ioctl.h>
 
+#ifndef HAVE_CLOCK_GETTIME
+#include "compat/clock_gettime.h"
+#endif
+
 #include "heritage.h"
 #include "shmlog.h"
 #include "cache.h"
_______________________________________________
varnish-dev mailing list
[email protected]
http://projects.linpro.no/mailman/listinfo/varnish-dev

Reply via email to