diff options
Diffstat (limited to 'src/tools/makedcp.cc')
| -rw-r--r-- | src/tools/makedcp.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/tools/makedcp.cc b/src/tools/makedcp.cc index fef0dd016..9d2088ca3 100644 --- a/src/tools/makedcp.cc +++ b/src/tools/makedcp.cc @@ -22,6 +22,9 @@ #include <getopt.h> #include <libdcp/test_mode.h> #include <libdcp/version.h> +#ifdef DVDOMATIC_WINDOWS +#include "winsock2.h" +#endif #include "format.h" #include "film.h" #include "filter.h" @@ -133,8 +136,14 @@ main (int argc, char* argv[]) bool all_done = false; bool first = true; while (!all_done) { - + +#ifdef DVDOMATIC_POSIX sleep (5); +#endif + +#ifdef DVDOMATIC_WINDOWS + /* XXX */ +#endif if (!first && progress) { cout << "\033[" << jobs.size() << "A"; |
