
phk at varnish-cache
Apr 28, 2012, 12:16 AM
Post #1 of 1
(62 views)
Permalink
|
|
[master] 563b21e Missed these two in yesterdays OpenBSD compat commit.
|
|
commit 563b21e1c6f4ea9891b527877cf36d0df8380cc4 Author: Poul-Henning Kamp <phk [at] FreeBSD> Date: Sat Apr 28 07:16:13 2012 +0000 Missed these two in yesterdays OpenBSD compat commit. diff --git a/lib/libvarnish/vsha256.c b/lib/libvarnish/vsha256.c index 10b7a6a..0a521b2 100644 --- a/lib/libvarnish/vsha256.c +++ b/lib/libvarnish/vsha256.c @@ -29,6 +29,7 @@ #include "config.h" #ifdef HAVE_SYS_ENDIAN_H +#include <sys/types.h> #include <sys/endian.h> #define VBYTE_ORDER _BYTE_ORDER #define VBIG_ENDIAN _BIG_ENDIAN diff --git a/lib/libvmod_std/vmod_std.c b/lib/libvmod_std/vmod_std.c index d1f6771..5b5c0aa 100644 --- a/lib/libvmod_std/vmod_std.c +++ b/lib/libvmod_std/vmod_std.c @@ -28,6 +28,8 @@ #include "config.h" +#include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #include <ctype.h> _______________________________________________ varnish-commit mailing list varnish-commit [at] varnish-cache https://www.varnish-cache.org/lists/mailman/listinfo/varnish-commit
|