r3969 - branches/2.0/varnish-cache/bin/varnishtest

tfheen at projects.linpro.no tfheen at projects.linpro.no
Fri Mar 20 14:38:18 CET 2009


Author: tfheen
Date: 2009-03-20 14:38:18 +0100 (Fri, 20 Mar 2009)
New Revision: 3969

Modified:
   branches/2.0/varnish-cache/bin/varnishtest/vtc.c
Log:
Merge r3828: Fix compilation problem on Solaris - missing include

Solaris appears to need #include <sys/wait.h> for WEXITSTATUS to be defined.



Modified: branches/2.0/varnish-cache/bin/varnishtest/vtc.c
===================================================================
--- branches/2.0/varnish-cache/bin/varnishtest/vtc.c	2009-03-20 11:17:17 UTC (rev 3968)
+++ branches/2.0/varnish-cache/bin/varnishtest/vtc.c	2009-03-20 13:38:18 UTC (rev 3969)
@@ -36,6 +36,7 @@
 #include <fcntl.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <sys/wait.h>
 
 #include "libvarnish.h"
 #include "vsb.h"



More information about the varnish-commit mailing list