summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorunknown <df@pippilotta.erinye.com>2007-03-09 10:19:50 +0100
committerunknown <df@pippilotta.erinye.com>2007-03-09 10:19:50 +0100
commitd11212bd87a7129076d9c611b05ca7a1df7945c4 (patch)
tree22a9828bd6443aa10a7115e274f1a341aa3c6b5c /config
parenta76c9c86d2665862d757514e737f8ecc8915dce9 (diff)
parent6e9ebc2a9f013ea5ae5b87fd73787c9b9b3646d6 (diff)
downloadmariadb-git-d11212bd87a7129076d9c611b05ca7a1df7945c4.tar.gz
Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work-25601
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work-25601 config/ac-macros/misc.m4: Auto merged
Diffstat (limited to 'config')
-rw-r--r--config/ac-macros/misc.m424
1 files changed, 24 insertions, 0 deletions
diff --git a/config/ac-macros/misc.m4 b/config/ac-macros/misc.m4
index fdce85aa136..6e9dfe8231c 100644
--- a/config/ac-macros/misc.m4
+++ b/config/ac-macros/misc.m4
@@ -663,3 +663,27 @@ esac
AC_SUBST(AR)
AC_SUBST(ARFLAGS)
])
+
+dnl
+dnl Macro to check time_t range: according to C standard
+dnl array index must be greater than 0 => if time_t is signed,
+dnl the code in the macros below won't compile.
+dnl
+
+AC_DEFUN([MYSQL_CHECK_TIME_T],[
+ AC_MSG_CHECKING(if time_t is unsigned)
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
+ [[
+#include <time.h>
+ ]],
+ [[
+ int array[(((time_t)-1) > 0) ? 1 : -1];
+ ]] )
+ ], [
+ AC_DEFINE([TIME_T_UNSIGNED], 1, [Define to 1 if time_t is unsigned])
+ AC_MSG_RESULT(yes)
+ ],
+ [AC_MSG_RESULT(no)]
+ )
+])
+