Author: al Date: 2009-12-30 21:58:20 +0100 (Wed, 30 Dec 2009) New Revision: 2918
Modified: trunk/src/filename.c Log: Use the gmtime_r() in pthreads.h when compiling in windows. Modified: trunk/src/filename.c =================================================================== --- trunk/src/filename.c 2009-12-30 20:53:29 UTC (rev 2917) +++ trunk/src/filename.c 2009-12-30 20:58:20 UTC (rev 2918) @@ -19,6 +19,9 @@ #include <glib.h> #include <glib/gstdio.h> +#ifdef WIN32 +#include <pthread.h> /* MinGW WIN32 gmtime_r() */ +#endif #include <gtk/gtk.h> #include <stdio.h> #include <string.h> _______________________________________________ Rawstudio-commit mailing list [email protected] http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit
