[LOG2LINES]

Partly fix MSVC build.
Disable MSVC build for now.

svn path=/trunk/; revision=58757
This commit is contained in:
Sylvain Petreolle 2013-04-14 15:09:52 +00:00
parent 17ad27cc71
commit 881457ce32
2 changed files with 5 additions and 4 deletions

View file

@ -11,7 +11,9 @@ add_subdirectory(cabman)
add_subdirectory(cdmake)
add_subdirectory(gendib)
add_subdirectory(geninc)
if(NOT MSVC)
add_subdirectory(log2lines)
endif()
add_subdirectory(mkhive)
add_subdirectory(obj2bin)
add_subdirectory(spec2def)

View file

@ -1,6 +1,6 @@
#pragma once
#if defined (__DJGPP__) || defined (__WIN32__)
#if defined(_WIN32)
#include <direct.h>
@ -15,8 +15,7 @@
#define CP_CMD "copy /Y "
#define DIR_FMT "dir /a:-d /s /b %s > %s"
#else /* not defined (__DJGPP__) || defined (__WIN32__) */
#else /* not defined (_WIN32) */
#include <limits.h>
#include <sys/stat.h>
@ -32,6 +31,6 @@
#define CP_CMD "cp -f "
#define DIR_FMT "find %s -type f > %s"
#endif /* not defined (__DJGPP__) || defined (__WIN32__) */
#endif /* not defined (_WIN32) */
/* EOF */