r3828 - trunk/varnish-cache/bin/varnishtest
tfheen at projects.linpro.no
tfheen at projects.linpro.no
Thu Feb 26 09:36:28 CET 2009
Author: tfheen
Date: 2009-02-26 09:36:28 +0100 (Thu, 26 Feb 2009)
New Revision: 3828
Modified:
trunk/varnish-cache/bin/varnishtest/vtc.c
Log:
Fix compilation problem on Solaris - missing include
Solaris appears to need #include <sys/wait.h> for WEXITSTATUS to be defined.
Modified: trunk/varnish-cache/bin/varnishtest/vtc.c
===================================================================
--- trunk/varnish-cache/bin/varnishtest/vtc.c 2009-02-25 11:40:39 UTC (rev 3827)
+++ trunk/varnish-cache/bin/varnishtest/vtc.c 2009-02-26 08:36:28 UTC (rev 3828)
@@ -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