[ROSAPPS]

Fix symdump, ncftp and netreg MSVC build.

svn path=/trunk/; revision=67548
This commit is contained in:
Daniel Reimer 2015-05-04 23:08:17 +00:00
parent 772a8d3918
commit 26aa5486a1
4 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@ include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_executable(symdump symdump.c) add_executable(symdump symdump.c)
set_module_type(symdump win32cui) set_module_type(symdump win32cui)
target_link_libraries(symdump wine) target_link_libraries(symdump wine)
add_importlibs(symdump dbghelp shlwapi msvcrt kernel32) add_importlibs(symdump dbghelp shlwapi msvcrt kernel32 ntdll)
if(NOT MSVC) if(NOT MSVC)
add_target_compile_flags(symdump "-Wno-unused-but-set-variable") add_target_compile_flags(symdump "-Wno-unused-but-set-variable")
endif() endif()

View file

@ -10,8 +10,8 @@
char gLibNcFTPVersion[64] = kLibraryVersion; char gLibNcFTPVersion[64] = kLibraryVersion;
/* #ifdef NO_SIGNALS #ifdef NO_SIGNALS
static char gNoSignalsMarker[] = "@(#) LibNcFTP - NO_SIGNALS"; char gNoSignalsMarker[] = "@(#) LibNcFTP - NO_SIGNALS";
#else #else
static int gGotSig = 0; static int gGotSig = 0;
@ -21,7 +21,7 @@ static sigjmp_buf gCancelConnectJmp;
static jmp_buf gCancelConnectJmp; static jmp_buf gCancelConnectJmp;
#endif #endif
#endif */ #endif
#ifndef lint #ifndef lint

View file

@ -14,7 +14,7 @@
# include "wincfg.h" # include "wincfg.h"
# include <winsock2.h> /* includes <windows.h> */ # include <winsock2.h> /* includes <windows.h> */
# include <io.h> # include <io.h>
# define _POSIX_ 1 //# define _POSIX_ 1
# ifdef HAVE_UNISTD_H # ifdef HAVE_UNISTD_H
# include <unistd.h> # include <unistd.h>
# endif # endif

View file

@ -2,5 +2,5 @@
set_cpp(WITH_RUNTIME WITH_STL) set_cpp(WITH_RUNTIME WITH_STL)
add_executable(netreg netreg.cpp netreg.rc) add_executable(netreg netreg.cpp netreg.rc)
set_module_type(netreg win32cui) set_module_type(netreg win32cui)
add_importlibs(netreg advapi32 user32 ws2_32 msvcrt kernel32) add_importlibs(netreg advapi32 user32 ws2_32 msvcrt kernel32 ntdll)
add_cd_file(TARGET netreg DESTINATION reactos/system32 FOR all) add_cd_file(TARGET netreg DESTINATION reactos/system32 FOR all)