1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 12:02:47 -05:00

Merge 0.81 branch.

This commit is contained in:
Simon Tatham
2024-04-15 19:42:50 +01:00
20 changed files with 925 additions and 215 deletions

View File

@ -108,6 +108,14 @@ include_directories(
${platform}
${extra_dirs})
check_c_source_compiles("
#define _ISOC11_SOURCE
#include <stdlib.h>
int main(int argc, char **argv) {
void *p = aligned_alloc(128, 12345);
free(p);
}" HAVE_ALIGNED_ALLOC)
if(PUTTY_DEBUG)
add_compile_definitions(DEBUG)
endif()