diff options
author | ahoka <ahoka> | 2008-07-17 20:54:00 +0000 |
---|---|---|
committer | ahoka <ahoka> | 2008-07-17 20:54:00 +0000 |
commit | 7432b857069ea3545be921457754aadd30ff54bd (patch) | |
tree | b9adeecff253b2a4bd66860a21a5071d5f24841f | |
parent | 22c6c6d087dbd437495f21d828a9561772d882d4 (diff) | |
download | pkgsrc-7432b857069ea3545be921457754aadd30ff54bd.tar.gz |
Add missing include to fix reported build failure.
-rw-r--r-- | wm/awesome/patches/patch-ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/wm/awesome/patches/patch-ac b/wm/awesome/patches/patch-ac new file mode 100644 index 00000000000..0d0f75b0df2 --- /dev/null +++ b/wm/awesome/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2008/07/17 20:54:00 ahoka Exp $ + +--- common/socket.c.orig 2008-06-24 09:05:44.000000000 +0200 ++++ common/socket.c +@@ -22,6 +22,7 @@ + + #include <stdio.h> + #include <errno.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <sys/un.h> + |