Fix warning: implicit declaration of function ‘localtime_r’

poppler/glib/demo/utils.c:488:20: warning: implicit declaration of function ‘localtime_r’ [-Wimplicit-function-declaration]
  if (time == 0 || !localtime_r (&time, &t)) return NULL;
                      ^~~~~~~~~~~

The c files also need the -D_DEFAULT_SOURCE feature macro to enable non standard C++11 functons.
1 file changed