diff options
author | joerg <joerg@pkgsrc.org> | 2017-02-18 13:59:01 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2017-02-18 13:59:01 +0000 |
commit | faf48bb04c9951dadd7d1a16e188e6e417d59906 (patch) | |
tree | 52272a69d6374f4d767c3da6efa2aa670285f7e1 | |
parent | 8ef4a0e2952aa903aba72855bdacf272b13cd371 (diff) | |
download | pkgsrc-faf48bb04c9951dadd7d1a16e188e6e417d59906.tar.gz |
Fix missing include.
-rw-r--r-- | net/udpcast/distinfo | 3 | ||||
-rw-r--r-- | net/udpcast/patches/patch-console.h | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/net/udpcast/distinfo b/net/udpcast/distinfo index 2de9d1c5ee7..24d0d0fbc6b 100644 --- a/net/udpcast/distinfo +++ b/net/udpcast/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2015/11/04 00:35:42 agc Exp $ +$NetBSD: distinfo,v 1.8 2017/02/18 13:59:01 joerg Exp $ SHA1 (udpcast-20060619.tar.gz) = ae95820c746fc6d6dc2c4c97d24d52105983e15c RMD160 (udpcast-20060619.tar.gz) = 1f8ffefc5f5a412f1b8bb371895987734f6159b1 @@ -12,3 +12,4 @@ SHA1 (patch-ae) = 4937aec1283ca42652f9614e317fa63dcc500019 SHA1 (patch-af) = 4360fba25ca7ffb2b05df5ed32aff7c5983ce62d SHA1 (patch-ag) = 1e8c13bf20908a90f8ad88f4a5651483538c9f36 SHA1 (patch-ah) = 0329f8e290b75f1da791465ab1ffd198a0f2ab32 +SHA1 (patch-console.h) = 41918980726a585458582d493e84b248ebf331c7 diff --git a/net/udpcast/patches/patch-console.h b/net/udpcast/patches/patch-console.h new file mode 100644 index 00000000000..9203682407b --- /dev/null +++ b/net/udpcast/patches/patch-console.h @@ -0,0 +1,12 @@ +$NetBSD: patch-console.h,v 1.1 2017/02/18 13:59:01 joerg Exp $ + +--- console.h.orig 2017-02-18 01:54:31.092565508 +0000 ++++ console.h +@@ -1,6 +1,7 @@ + #ifndef CONSOLE_H + #define CONSOLE_H + ++#include <sys/time.h> + #ifdef __MINGW32__ + #include <winsock2.h> + #include <winbase.h> |