mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[ROSAPPS]
Fix symdump, ncftp and netreg MSVC build. svn path=/trunk/; revision=67548
This commit is contained in:
parent
772a8d3918
commit
26aa5486a1
4 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@ include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|||
add_executable(symdump symdump.c)
|
||||
set_module_type(symdump win32cui)
|
||||
target_link_libraries(symdump wine)
|
||||
add_importlibs(symdump dbghelp shlwapi msvcrt kernel32)
|
||||
add_importlibs(symdump dbghelp shlwapi msvcrt kernel32 ntdll)
|
||||
if(NOT MSVC)
|
||||
add_target_compile_flags(symdump "-Wno-unused-but-set-variable")
|
||||
endif()
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
char gLibNcFTPVersion[64] = kLibraryVersion;
|
||||
|
||||
/* #ifdef NO_SIGNALS
|
||||
static char gNoSignalsMarker[] = "@(#) LibNcFTP - NO_SIGNALS";
|
||||
#ifdef NO_SIGNALS
|
||||
char gNoSignalsMarker[] = "@(#) LibNcFTP - NO_SIGNALS";
|
||||
#else
|
||||
|
||||
static int gGotSig = 0;
|
||||
|
@ -21,7 +21,7 @@ static sigjmp_buf gCancelConnectJmp;
|
|||
static jmp_buf gCancelConnectJmp;
|
||||
#endif
|
||||
|
||||
#endif */
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef lint
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
# include "wincfg.h"
|
||||
# include <winsock2.h> /* includes <windows.h> */
|
||||
# include <io.h>
|
||||
# define _POSIX_ 1
|
||||
//# define _POSIX_ 1
|
||||
# ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
# endif
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
set_cpp(WITH_RUNTIME WITH_STL)
|
||||
add_executable(netreg netreg.cpp netreg.rc)
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue