diff options
author | monty@narttu.mysql.fi <> | 2003-06-04 16:05:27 +0300 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-06-04 16:05:27 +0300 |
commit | 100a66e6cbb6598039fdd0c0b5e9f8ed6e1d025d (patch) | |
tree | c934efa152de5caa783757ffbd3353ed664d55d2 /innobase/include | |
parent | f6a365a53218c4ba8d3b6c03088090f5878115ff (diff) | |
download | mariadb-git-100a66e6cbb6598039fdd0c0b5e9f8ed6e1d025d.tar.gz |
Added [mysqld-base-version] as a default group for the mysqld server
Portability fix for Windows 64
Diffstat (limited to 'innobase/include')
-rw-r--r-- | innobase/include/univ.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/innobase/include/univ.i b/innobase/include/univ.i index e29f3ec92e1..4854e5a7b78 100644 --- a/innobase/include/univ.i +++ b/innobase/include/univ.i @@ -187,7 +187,11 @@ management to ensure correct alignment for doubles etc. */ /* Another basic type we use is unsigned long integer which is intended to be equal to the word size of the machine. */ +#ifdef _WIN64 +typedef unsigned __int64 ulint; +#else typedef unsigned long int ulint; +#endif typedef long int lint; |