diff options
author | unknown <monty@narttu.mysql.fi> | 2003-06-04 16:05:27 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-06-04 16:05:27 +0300 |
commit | a91d2fcbd9d927deb8808c10a32f1baa192a4e26 (patch) | |
tree | c934efa152de5caa783757ffbd3353ed664d55d2 /innobase | |
parent | 3f7dfc4df3a9bdfc01e5b84c3297fff61b791f9b (diff) | |
download | mariadb-git-a91d2fcbd9d927deb8808c10a32f1baa192a4e26.tar.gz |
Added [mysqld-base-version] as a default group for the mysqld server
Portability fix for Windows 64
include/config-win.h:
Portability fix for Windows 64
include/my_global.h:
Portability fix for Windows 64
include/mysql_version.h.in:
Added [mysqld-base-version] as a default group for the mysqld server
innobase/include/univ.i:
Portability fix for Windows 64
sql/mysqld.cc:
Added [mysqld-base-version] as a default group for the mysqld server
Diffstat (limited to 'innobase')
-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; |