Attempt to fix build

Still not the perfect solution as it might be better to use the host/typedefs.h also for Windows hosts, but at least the code works without the obsolete typedefs64.h now.

svn path=/trunk/; revision=30165
This commit is contained in:
Colin Finck 2007-11-05 11:26:20 +00:00
parent b964c2fdeb
commit ce625d50ff
3 changed files with 3 additions and 9 deletions

View file

@ -14,8 +14,7 @@
#include <fcntl.h>
#include <sys/types.h>
#include <time.h>
#include <typedefs64.h>
typedef unsigned short USHORT, *PUSHORT;
#include <host/typedefs.h>
#include <unistd.h>
#ifndef MAX_PATH
#define MAX_PATH 260

View file

@ -34,12 +34,7 @@
#endif//MAX_PATH
#else
#include <unistd.h>
typedef char CHAR, *PCHAR;
typedef unsigned char UCHAR, *PUCHAR;
typedef void VOID, *PVOID;
typedef UCHAR BOOLEAN, *PBOOLEAN;
#include <typedefs64.h>
#include <host/typedefs.h>
typedef LONG *PLONG;
#endif//WIN32

View file

@ -356,7 +356,7 @@ RBUILD_TEST_OBJECTS = \
$(RBUILD_COMMON_OBJECTS) \
$(RBUILD_TEST_SPECIAL_OBJECTS)
RBUILD_HOST_CXXFLAGS = -I$(RBUILD_BASE) -I$(TOOLS_BASE) -I$(INFLIB_BASE) $(TOOLS_CPPFLAGS) -Iinclude/reactos
RBUILD_HOST_CXXFLAGS = -I$(RBUILD_BASE) -I$(TOOLS_BASE) -I$(INFLIB_BASE) $(TOOLS_CPPFLAGS) -Iinclude -Iinclude/reactos
RBUILD_HOST_LFLAGS = $(TOOLS_LFLAGS)