diff options
author | unknown <serg@janus.mylan> | 2006-08-01 14:02:19 +0200 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2006-08-01 14:02:19 +0200 |
commit | fe84903b15772782aa3bfbaa5fee60d480eaa4f2 (patch) | |
tree | fa9a52e1594e40970c22cd0c3f33519897c39fc0 /configure.in | |
parent | b2768ee6810e5bc6e0bf4007859dbe1af3afade5 (diff) | |
download | mariadb-git-fe84903b15772782aa3bfbaa5fee60d480eaa4f2.tar.gz |
compile-time definition of intptr type
config/ac-macros/misc.m4:
remove unnecessary macro
configure.in:
use AC_CHECK_SIZEOF when appropriate
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1306a3cc74d..49da91797fc 100644 --- a/configure.in +++ b/configure.in @@ -1687,7 +1687,7 @@ then AC_MSG_ERROR("MySQL needs a long long type.") fi # off_t is not a builtin type -MYSQL_CHECK_SIZEOF(off_t, 4) +AC_CHECK_SIZEOF(off_t, 4) if test "$ac_cv_sizeof_off_t" -eq 0 then AC_MSG_ERROR("MySQL needs a off_t type.") |