Bump to 1.14.1
[platform/upstream/augeas.git] / modules / time_rz
1 Description:
2 Reentrant time zone functions: localtime_rz, mktime_z, etc.
3
4 Comment:
5 This implements the NetBSD-inspired extensions to <time.h>, which
6 defines a type timezone_t and associated allocation functions tzalloc
7 and tzfree, along with two functions localtime_rz and mktime_z that
8 are like localtime_r and mktime except they have a new leading
9 timezone_t argument.  Time zone abbreviation strings have lifetimes
10 equal to the corresponding struct tm or timezone_t object (whichever
11 is less).  tzalloc (X) yields a time zone object equivalent to setting
12 the TZ environment variable to X.  tzalloc (NULL) is the same as an
13 unset TZ environment variable.  (timezone_t) 0 stands for UTC.
14
15 Files:
16 lib/time-internal.h
17 lib/time_rz.c
18 m4/time_rz.m4
19
20 Depends-on:
21 extensions
22 flexmember     [test "$HAVE_TIMEZONE_T" = 0]
23 setenv         [test "$HAVE_TIMEZONE_T" = 0]
24 stdbool        [test "$HAVE_TIMEZONE_T" = 0]
25 time_r         [test "$HAVE_TIMEZONE_T" = 0]
26 timegm         [test "$HAVE_TIMEZONE_T" = 0]
27 unsetenv       [test "$HAVE_TIMEZONE_T" = 0]
28
29 configure.ac:
30 gl_TIME_RZ
31 if test "$HAVE_TIMEZONE_T" = 0; then
32   AC_LIBOBJ([time_rz])
33 fi
34 gl_TIME_MODULE_INDICATOR([time_rz])
35
36 Makefile.am:
37
38 Include:
39 <time.h>
40
41 License:
42 LGPL
43
44 Maintainer:
45 Paul Eggert