summaryrefslogtreecommitdiff
path: root/m4/strftime-fixes.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2017-04-30 17:14:35 +0200
committerBruno Haible <bruno@clisp.org>2017-04-30 19:26:38 +0200
commit9df4babee613569704bd8947de9a3cd46086b43e (patch)
treeee994ea3f1c88175c9be133bdbc134a7ee01464f /m4/strftime-fixes.m4
parentdb1ee11e2168af7137db53289a92e306d2277b0b (diff)
downloadgnulib-9df4babee613569704bd8947de9a3cd46086b43e.tar.gz
strftime-fixes: New module.
* lib/time.in.h (strftime): New declaration. * lib/strftime-fixes.c: New file. * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Inline gl_FUNC_STRFTIME macro. (gl_FUNC_STRFTIME): Remove macro. * m4/strftime-fixes.m4: New file. * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_STRFTIME, REPLACE_STRFTIME. * modules/time (Makefile.am): Substitute GNULIB_STRFTIME, REPLACE_STRFTIME. * modules/strftime-fixes: New file. * doc/posix-functions/strftime.texi: Mention the new module.
Diffstat (limited to 'm4/strftime-fixes.m4')
-rw-r--r--m4/strftime-fixes.m415
1 files changed, 15 insertions, 0 deletions
diff --git a/m4/strftime-fixes.m4 b/m4/strftime-fixes.m4
new file mode 100644
index 0000000000..dbeb4d95e0
--- /dev/null
+++ b/m4/strftime-fixes.m4
@@ -0,0 +1,15 @@
+# strftime-fixes.m4 serial 1
+dnl Copyright (C) 2017 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+AC_DEFUN([gl_FUNC_STRFTIME],
+[
+ AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
+ AC_REQUIRE([AC_CANONICAL_HOST])
+ case "$host_os" in
+ mingw*) REPLACE_STRFTIME=1 ;;
+ *) REPLACE_STRFTIME=0 ;;
+ esac
+])