summaryrefslogtreecommitdiffstats
path: root/gl/m4/mktime.m4
diff options
context:
space:
mode:
Diffstat (limited to 'gl/m4/mktime.m4')
-rw-r--r--gl/m4/mktime.m49
1 files changed, 8 insertions, 1 deletions
diff --git a/gl/m4/mktime.m4 b/gl/m4/mktime.m4
index 223b9f1..1e926e8 100644
--- a/gl/m4/mktime.m4
+++ b/gl/m4/mktime.m4
@@ -1,4 +1,4 @@
1# serial 14 1# serial 15
2dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc. 2dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation 3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it, 4dnl gives unlimited permission to copy and/or distribute it,
@@ -15,6 +15,13 @@ dnl From Jim Meyering.
15AC_DEFUN([AC_FUNC_MKTIME], 15AC_DEFUN([AC_FUNC_MKTIME],
16[AC_CHECK_HEADERS_ONCE([unistd.h]) 16[AC_CHECK_HEADERS_ONCE([unistd.h])
17AC_CHECK_FUNCS_ONCE([alarm]) 17AC_CHECK_FUNCS_ONCE([alarm])
18AC_REQUIRE([gl_MULTIARCH])
19if test $APPLE_UNIVERSAL_BUILD = 1; then
20 # A universal build on Apple MacOS X platforms.
21 # The test result would be 'yes' in 32-bit mode and 'no' in 64-bit mode.
22 # But we need a configuration result that is valid in both modes.
23 ac_cv_func_working_mktime=no
24fi
18AC_CACHE_CHECK([for working mktime], [ac_cv_func_working_mktime], 25AC_CACHE_CHECK([for working mktime], [ac_cv_func_working_mktime],
19[AC_RUN_IFELSE([AC_LANG_SOURCE( 26[AC_RUN_IFELSE([AC_LANG_SOURCE(
20[[/* Test program from Paul Eggert and Tony Leneis. */ 27[[/* Test program from Paul Eggert and Tony Leneis. */