diff options
author | John Marino <marino@FreeBSD.org> | 2013-10-30 12:54:19 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2013-10-30 12:54:19 +0000 |
commit | 3f6a69b56d0cc756c2239e54b75f85709c9816d9 (patch) | |
tree | 7f2145f7b8d46546d12e9d5e29c85eb4bb3986eb | |
parent | 3c158e6d96a841288a9ff9a61ac90c7844d353af (diff) |
multimedia/openmovieeditor: add <unistd.h>, <cstdio>, <stdint.h>
Approved by: portmgr (bapt, implicit)
Notes
Notes:
svn path=/head/; revision=332102
4 files changed, 40 insertions, 0 deletions
diff --git a/multimedia/openmovieeditor/files/patch-src_AddCommand.cxx b/multimedia/openmovieeditor/files/patch-src_AddCommand.cxx new file mode 100644 index 000000000000..092e8d6683cf --- /dev/null +++ b/multimedia/openmovieeditor/files/patch-src_AddCommand.cxx @@ -0,0 +1,10 @@ +--- src/AddCommand.cxx.orig 2013-10-30 13:00:57.000000000 +0100 ++++ src/AddCommand.cxx +@@ -18,6 +18,7 @@ + */ + + ++#include <cstdio> + #include "AddCommand.H" + #include "timeline/Clip.H" + #include "Timeline.H" diff --git a/multimedia/openmovieeditor/files/patch-src_DiskCache.H b/multimedia/openmovieeditor/files/patch-src_DiskCache.H new file mode 100644 index 000000000000..ecc72221bef5 --- /dev/null +++ b/multimedia/openmovieeditor/files/patch-src_DiskCache.H @@ -0,0 +1,10 @@ +--- src/DiskCache.H.orig 2013-10-30 13:04:06.000000000 +0100 ++++ src/DiskCache.H +@@ -20,6 +20,7 @@ + #ifndef _DISK_CACHE_H_ + #define _DISK_CACHE_H_ + ++#include <cstdio> + #include "global_includes.H" + namespace nle + { diff --git a/multimedia/openmovieeditor/files/patch-src_DiskCache.cxx b/multimedia/openmovieeditor/files/patch-src_DiskCache.cxx new file mode 100644 index 000000000000..4c9148b55748 --- /dev/null +++ b/multimedia/openmovieeditor/files/patch-src_DiskCache.cxx @@ -0,0 +1,10 @@ +--- src/DiskCache.cxx.orig 2013-10-29 00:12:10.513674000 +0000 ++++ src/DiskCache.cxx +@@ -25,6 +25,7 @@ + #include <sys/stat.h> + #include <cerrno> + #include <cstring> ++#include <unistd.h> + + #include "DiskCache.H" + #include "globals.H" diff --git a/multimedia/openmovieeditor/files/patch-src_WaveForm.H b/multimedia/openmovieeditor/files/patch-src_WaveForm.H new file mode 100644 index 000000000000..8d130eeb3eac --- /dev/null +++ b/multimedia/openmovieeditor/files/patch-src_WaveForm.H @@ -0,0 +1,10 @@ +--- src/WaveForm.H.orig 2013-10-30 12:48:34.000000000 +0100 ++++ src/WaveForm.H +@@ -21,6 +21,7 @@ + #include "JobManager.H" + + #include <string> ++#include <stdint.h> + + namespace nle + { |