Skip to content

Commit 9f46223

Browse files
committed
Bug#18404381: REMOVE UNNEEDE CMAKE CHECKS AND #IFDEFS IN 5.7.5
Post-push fix: Add 3 #includes to fix Windows compile warnings.
1 parent b6a6075 commit 9f46223

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

storage/myisam/mi_create.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
#ifdef _WIN32
2424
#include <fcntl.h>
25+
#include <process.h>
2526
#endif
2627
#include <m_ctype.h>
2728

storage/myisam/mi_log.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "myisamdef.h"
2222
#ifdef _WIN32
2323
#include <fcntl.h>
24+
#include <process.h>
2425
#endif
2526

2627
#undef GETPID /* For HPUX */

storage/myisam/mi_open.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
#ifdef _WIN32
3535
#include <fcntl.h>
36+
#include <process.h>
3637
#endif
3738

3839
static void setup_key_functions(MI_KEYDEF *keyinfo);

0 commit comments

Comments
 (0)