diff options
author | konstantin@mysql.com <> | 2004-07-21 17:36:26 -0700 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-07-21 17:36:26 -0700 |
commit | d2c1f3fc379d11ec236cb786726be4ba647b3b6f (patch) | |
tree | e1c502ab20782af7b4564054ae3c46a321ccbb4e /mysys/my_crc32.c | |
parent | 58bdb6221ce902ed5a17c7130f2352c3e33f085c (diff) | |
download | mariadb-git-d2c1f3fc379d11ec236cb786726be4ba647b3b6f.tar.gz |
First step of implementation of WL#1518 "make bundled zlib
usable for unix builds": zlib 1.2.1 imported
Diffstat (limited to 'mysys/my_crc32.c')
-rw-r--r-- | mysys/my_crc32.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mysys/my_crc32.c b/mysys/my_crc32.c index 5514b01ede2..db1beb58263 100644 --- a/mysys/my_crc32.c +++ b/mysys/my_crc32.c @@ -17,20 +17,7 @@ #include "mysys_priv.h" #ifndef HAVE_COMPRESS - -/* minimal set of defines for using crc32() from zlib codebase */ -#define _ZLIB_H -#define ZEXPORT -#define Z_NULL 0 -#define OF(args) args #undef DYNAMIC_CRC_TABLE -typedef uchar Byte; -typedef uchar Bytef; -typedef uint uInt; -typedef ulong uLong; -typedef ulong uLongf; - #include "../zlib/crc32.c" - #endif |