BUG#46587 - archive storage engine headers don't include

my_global.h first

We may end up with a compilation failure on certain platforms
because zlib.h is included before my_global.h.

Fixed by moving zlib.h inclusion down after my_global.h.
This commit is contained in:
Sergey Vojtovich 2010-04-15 13:33:33 +04:00
parent 1b12f4c233
commit e43e59833f

View File

@ -33,10 +33,9 @@
(zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
*/
#include <zlib.h>
#include "../../mysys/mysys_priv.h"
#include <my_dir.h>
#include <zlib.h>
#ifdef __cplusplus
extern "C" {