r273 - in trunk/varnish-cache: bin/varnishd include

des at projects.linpro.no des at projects.linpro.no
Fri Jun 30 15:44:09 CEST 2006


Author: des
Date: 2006-06-30 15:44:09 +0200 (Fri, 30 Jun 2006)
New Revision: 273

Modified:
   trunk/varnish-cache/bin/varnishd/cache.h
   trunk/varnish-cache/bin/varnishd/cache_acceptor.c
   trunk/varnish-cache/bin/varnishd/cache_fetch.c
   trunk/varnish-cache/bin/varnishd/cache_hash.c
   trunk/varnish-cache/bin/varnishd/cache_pass.c
   trunk/varnish-cache/bin/varnishd/cache_pipe.c
   trunk/varnish-cache/bin/varnishd/cache_vcl.c
   trunk/varnish-cache/bin/varnishd/cache_vrt.c
   trunk/varnish-cache/bin/varnishd/hash_simple_list.c
   trunk/varnish-cache/bin/varnishd/storage_file.c
   trunk/varnish-cache/bin/varnishd/storage_malloc.c
   trunk/varnish-cache/include/stats.h
Log:
Consistently use our own copy of queue.h.

Modified: trunk/varnish-cache/bin/varnishd/cache.h
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache.h	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache.h	2006-06-30 13:44:09 UTC (rev 273)
@@ -2,7 +2,7 @@
  * $Id$
  */
 
-#include <sys/queue.h>
+#include <queue.h>
 
 #include "vcl_returns.h"
 

Modified: trunk/varnish-cache/bin/varnishd/cache_acceptor.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_acceptor.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_acceptor.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -16,7 +16,7 @@
 #include <sys/uio.h>
 #include <sys/types.h>
 #include <sys/socket.h>
-#include <sys/queue.h>
+#include <queue.h>
 
 #include <netdb.h>
 

Modified: trunk/varnish-cache/bin/varnishd/cache_fetch.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_fetch.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_fetch.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 #include <fcntl.h>
 #include <pthread.h>
-#include <sys/queue.h>
+#include <queue.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netdb.h>

Modified: trunk/varnish-cache/bin/varnishd/cache_hash.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_hash.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_hash.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -10,6 +10,7 @@
 #include <fcntl.h>
 #include <event.h>
 #include <pthread.h>
+#include <queue.h>
 
 #include "libvarnish.h"
 #include "shmlog.h"

Modified: trunk/varnish-cache/bin/varnishd/cache_pass.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_pass.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_pass.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -10,7 +10,7 @@
 #include <stdlib.h>
 #include <fcntl.h>
 #include <pthread.h>
-#include <sys/queue.h>
+#include <queue.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netdb.h>

Modified: trunk/varnish-cache/bin/varnishd/cache_pipe.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_pipe.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_pipe.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -8,7 +8,7 @@
 #include <string.h>
 #include <stdlib.h>
 #include <pthread.h>
-#include <sys/queue.h>
+#include <queue.h>
 #include <sys/socket.h>
 #include <sbuf.h>
 #include <event.h>

Modified: trunk/varnish-cache/bin/varnishd/cache_vcl.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_vcl.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_vcl.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -9,7 +9,7 @@
 #include <stdlib.h>
 #include <pthread.h>
 #include <dlfcn.h>
-#include <sys/queue.h>
+#include <queue.h>
 
 #include "cli.h"
 #include "cli_priv.h"

Modified: trunk/varnish-cache/bin/varnishd/cache_vrt.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/cache_vrt.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/cache_vrt.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -11,7 +11,7 @@
 #include <stdlib.h>
 #include <pthread.h>
 #include <dlfcn.h>
-#include <sys/queue.h>
+#include <queue.h>
 
 #include "cli.h"
 #include "cli_priv.h"

Modified: trunk/varnish-cache/bin/varnishd/hash_simple_list.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/hash_simple_list.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/hash_simple_list.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -9,7 +9,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <pthread.h>
-#include <sys/queue.h>
+#include <queue.h>
 
 #include <libvarnish.h>
 #include <cache.h>

Modified: trunk/varnish-cache/bin/varnishd/storage_file.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/storage_file.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/storage_file.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -13,7 +13,7 @@
 #include <limits.h>
 #include <stdlib.h>
 #include <string.h>
-#include <sys/queue.h>
+#include <queue.h>
 #include <sys/stat.h>
 #include <pthread.h>
 #include <sys/param.h>

Modified: trunk/varnish-cache/bin/varnishd/storage_malloc.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/storage_malloc.c	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/bin/varnishd/storage_malloc.c	2006-06-30 13:44:09 UTC (rev 273)
@@ -6,7 +6,7 @@
 
 #include <assert.h>
 #include <stdlib.h>
-#include <sys/queue.h>
+#include <queue.h>
 #include <pthread.h>
 
 #include "cache.h"

Modified: trunk/varnish-cache/include/stats.h
===================================================================
--- trunk/varnish-cache/include/stats.h	2006-06-30 11:20:10 UTC (rev 272)
+++ trunk/varnish-cache/include/stats.h	2006-06-30 13:44:09 UTC (rev 273)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-#include <sys/types.h>
+#include <stdint.h>
 
 struct varnish_stats {
 #define MAC_STAT(n,t,f,e)	t n;




More information about the varnish-commit mailing list