mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 08:15:31 +02:00
The header "config.h" needs to be included "early" to control other headers.
This time the inclusion of <stdio.h> before "config.h" enabled legacy large file support, seek64() and similar, on AIX breaking the compile of "gzio.c"
This commit is contained in:
parent
8acc0f5537
commit
12173de37b
1 changed files with 5 additions and 0 deletions
|
|
@ -7,6 +7,11 @@
|
|||
|
||||
/* @(#) $Id$ */
|
||||
|
||||
/* Need to be included "early" to control other headers */
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "zutil.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue