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:
@ -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()
|
||||
|
Reference in New Issue
Block a user