diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-12-20 13:13:55 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-12-20 13:13:55 +0200 |
commit | 9e56a0a7711e1f6f2b234db54b3e3d2004069bbf (patch) | |
tree | db2c563a0823450c1879c1ff956891b9a71ba6a5 /innobase/configure.in | |
parent | d5708aeb6873611d0b86e27b2540bb9535e40e21 (diff) | |
download | mariadb-git-9e56a0a7711e1f6f2b234db54b3e3d2004069bbf.tar.gz |
srv0start.c, univ.i, configure.in:
Check at compilation time on Unix that InnoDB ulint is the same size as void*, and also check it at runtime
innobase/configure.in:
Check at compilation time on Unix that InnoDB ulint is the same size as void*, and also check it at runtime
innobase/include/univ.i:
Check at compilation time on Unix that InnoDB ulint is the same size as void*, and also check it at runtime
innobase/srv/srv0start.c:
Check at compilation time on Unix that InnoDB ulint is the same size as void*, and also check it at runtime
Diffstat (limited to 'innobase/configure.in')
-rw-r--r-- | innobase/configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/innobase/configure.in b/innobase/configure.in index 29309a2c0a5..9d57a0f2d91 100644 --- a/innobase/configure.in +++ b/innobase/configure.in @@ -37,6 +37,7 @@ AC_PROG_INSTALL AC_CHECK_HEADERS(aio.h sched.h) AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(long, 4) +AC_CHECK_SIZEOF(void*, 4) AC_CHECK_FUNCS(sched_yield) AC_CHECK_FUNCS(fdatasync) #AC_CHECK_FUNCS(localtime_r) # Already checked by MySQL |