Ported v8.1 changes
This commit is contained in:
parent
66b040a11e
commit
754f7b4885
|
@ -1,4 +1,4 @@
|
|||
version: 8.0.0.0.{build}
|
||||
version: 8.1.0.0.{build}
|
||||
image: Visual Studio 2015
|
||||
|
||||
branches:
|
||||
|
|
|
@ -359,6 +359,12 @@
|
|||
/* Define to 1 if you have the `EVP_sha256' function. */
|
||||
#define HAVE_EVP_SHA256 1
|
||||
|
||||
/* Define to 1 if you have the `EVP_sha384' function. */
|
||||
#define HAVE_EVP_SHA384 1
|
||||
|
||||
/* Define to 1 if you have the `EVP_sha512' function. */
|
||||
#define HAVE_EVP_SHA512 1
|
||||
|
||||
/* Define if you have ut_exit in utmp.h */
|
||||
/* #undef HAVE_EXIT_IN_UTMP */
|
||||
|
||||
|
|
|
@ -375,6 +375,7 @@
|
|||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)ssh-keygen.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)sshsig.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)contrib\win32\win32compat\wmain_common.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)contrib\win32\win32compat\win32-utf8.c" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -359,7 +359,6 @@
|
|||
<ClCompile Include="$(OpenSSH-Src-Path)cipher.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)cleanup.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)compat.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)crc32.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)dh.c">
|
||||
<ExcludedFromBuild Condition="$(UseOpenSSL)==false">true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
@ -429,7 +428,6 @@
|
|||
<ClCompile Include="$(OpenSSH-Src-Path)sshkey.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)ssh_api.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)umac.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)uuencode.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)verify.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)xmalloc.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)platform-misc.c" />
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\kludge-fd_set.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\libressl-api-compat.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\md5.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\memmem.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\mktemp.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\openssl-compat.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\port-irix.c" />
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)sftp-common.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)sftp-realpath.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)sftp-server-main.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)sftp-server.c" />
|
||||
<ClCompile Include="$(OpenSSH-Src-Path)contrib\win32\win32compat\wmain_common.c" />
|
||||
|
|
|
@ -51,8 +51,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 8,0,0,0
|
||||
PRODUCTVERSION 8,0,0,0
|
||||
FILEVERSION 8,1,0,0
|
||||
PRODUCTVERSION 8,1,0,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -67,9 +67,9 @@ BEGIN
|
|||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileVersion", "8.0.0.0"
|
||||
VALUE "FileVersion", "8.1.0.0"
|
||||
VALUE "ProductName", "OpenSSH for Windows"
|
||||
VALUE "ProductVersion", "OpenSSH_8.0p1 for Windows"
|
||||
VALUE "ProductVersion", "OpenSSH_8.1p1 for Windows"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -6,3 +6,4 @@ void freezero(void *, size_t);
|
|||
int setenv(const char *name, const char *value, int rewrite);
|
||||
#define system w32_system
|
||||
int w32_system(const char *command);
|
||||
char* realpath(const char *pathname, char *resolved);
|
||||
|
|
|
@ -486,7 +486,7 @@ execute_in_shell(const char *cmd)
|
|||
|
||||
#ifdef WINDOWS
|
||||
return system(cmd);
|
||||
#endif
|
||||
#else
|
||||
|
||||
if ((shell = getenv("SHELL")) == NULL)
|
||||
shell = _PATH_BSHELL;
|
||||
|
@ -543,6 +543,7 @@ execute_in_shell(const char *cmd)
|
|||
}
|
||||
debug3("command returned status %d", WEXITSTATUS(status));
|
||||
return WEXITSTATUS(status);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue