mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 11:32:48 -05:00
Support AF_UNIX listening sockets on Windows.
Not all Windows toolchains have this yet, so we have to put the whole lot under #ifdef.
This commit is contained in:
@ -8,6 +8,7 @@
|
||||
#cmakedefine01 HAVE_WINRES_H
|
||||
#cmakedefine01 HAVE_WIN_H
|
||||
#cmakedefine01 HAVE_NO_STDINT_H
|
||||
#cmakedefine01 HAVE_AFUNIX_H
|
||||
#cmakedefine01 HAVE_GCP_RESULTSW
|
||||
#cmakedefine01 HAVE_ADDDLLDIRECTORY
|
||||
#cmakedefine01 HAVE_GETNAMEDPIPECLIENTPROCESSID
|
||||
|
@ -41,6 +41,8 @@ define_negation(NO_MULTIMON HAVE_MULTIMON_H)
|
||||
check_include_files("windows.h;htmlhelp.h" HAVE_HTMLHELP_H)
|
||||
define_negation(NO_HTMLHELP HAVE_HTMLHELP_H)
|
||||
|
||||
check_include_files("winsock2.h;afunix.h" HAVE_AFUNIX_H)
|
||||
|
||||
check_symbol_exists(strtoumax "inttypes.h" HAVE_STRTOUMAX)
|
||||
check_symbol_exists(AddDllDirectory "windows.h" HAVE_ADDDLLDIRECTORY)
|
||||
check_symbol_exists(SetDefaultDllDirectories "windows.h"
|
||||
|
Reference in New Issue
Block a user