mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
pango: check if localtime_r is available
HAVE_LOCALTIME_R was used, but never defined.
This commit is contained in:
parent
c8ff6f82a5
commit
98ebcb4b8a
2 changed files with 9 additions and 8 deletions
|
@ -79,17 +79,17 @@ gst_clock_overlay_render_time (GstClockOverlay * overlay)
|
||||||
time_t now;
|
time_t now;
|
||||||
gchar buf[256];
|
gchar buf[256];
|
||||||
|
|
||||||
#ifdef HAVE_LOCALTIME_R
|
|
||||||
struct tm dummy;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
now = time (NULL);
|
now = time (NULL);
|
||||||
|
|
||||||
#ifdef HAVE_LOCALTIME_R
|
#ifdef HAVE_LOCALTIME_R
|
||||||
|
{
|
||||||
|
struct tm dummy;
|
||||||
|
|
||||||
/* Need to call tzset explicitly when calling localtime_r for changes
|
/* Need to call tzset explicitly when calling localtime_r for changes
|
||||||
to the timezone between calls to be visible. */
|
* to the timezone between calls to be visible. */
|
||||||
tzset ();
|
tzset ();
|
||||||
t = localtime_r (&now, &dummy);
|
t = localtime_r (&now, &dummy);
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
/* on win32 this apparently returns a per-thread struct which would be fine */
|
/* on win32 this apparently returns a per-thread struct which would be fine */
|
||||||
t = localtime (&now);
|
t = localtime (&now);
|
||||||
|
|
|
@ -136,6 +136,7 @@ endforeach
|
||||||
check_functions = [
|
check_functions = [
|
||||||
['HAVE_DCGETTEXT', 'dcgettext', '#include<libintl.h>'],
|
['HAVE_DCGETTEXT', 'dcgettext', '#include<libintl.h>'],
|
||||||
['HAVE_GMTIME_R', 'gmtime_r', '#include<time.h>'],
|
['HAVE_GMTIME_R', 'gmtime_r', '#include<time.h>'],
|
||||||
|
['HAVE_LOCALTIME_R', 'localtime_r', '#include<time.h>'],
|
||||||
['HAVE_LRINTF', 'lrintf', '#include<math.h>'],
|
['HAVE_LRINTF', 'lrintf', '#include<math.h>'],
|
||||||
['HAVE_MMAP', 'mmap', '#include<sys/mman.h>'],
|
['HAVE_MMAP', 'mmap', '#include<sys/mman.h>'],
|
||||||
['HAVE_LOG2', 'log2', '#include<math.h>'],
|
['HAVE_LOG2', 'log2', '#include<math.h>'],
|
||||||
|
|
Loading…
Reference in a new issue