Hi all,<br><br>I&#39;m the guy who does Inkscape builds for WIN32, and I found<br>two places that need to be tweaked for Mingw builds:<br><br><span class="main-span" id="text"><font style="background: rgb(255, 255, 255) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" color="#000000">
#1
:&nbsp;&nbsp;in /glib,&nbsp;&nbsp;the Makefile needs to call libtool with&nbsp; &quot;--mode=link
g++&quot;&nbsp; instead of gcc.&nbsp; I don&#39;t know how to do that in <a href="http://Makefile.am">Makefile.am</a>, but
that&#39;s what it needs.&nbsp; In the Makefile it is $(CXXLD).<br><br>#2 :</font></span><span class="main-span" id="text"><font style="background: rgb(255, 255, 255) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" color="#000000">
 /glib/test-poppler-glib needs to call localtime() rather than localtime_r():</font></span><br><span class="main-span" id="text"><font style="background: rgb(255, 255, 255) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" color="#000000">
<br>static gchar *<br>poppler_format_date (GTime utime)<br>{<br>&nbsp;&nbsp;&nbsp; time_t time = (time_t) utime;<br>&nbsp;&nbsp;&nbsp; struct tm *t;<br>&nbsp;&nbsp;&nbsp; char s[256];<br>&nbsp;&nbsp;&nbsp; const char *fmt_hack = &quot;%c&quot;;<br>&nbsp;&nbsp;&nbsp; size_t len;<br><br>&nbsp;&nbsp;&nbsp; if (time == 0 || !(t = localtime (&amp;time)) ) return NULL;
<br><br>&nbsp;&nbsp;&nbsp; len = strftime (s, sizeof (s), fmt_hack, t);<br>&nbsp;&nbsp;&nbsp; if (len == 0 || s[0] == &#39;\0&#39;) return NULL;<br><br>&nbsp;&nbsp;&nbsp; return g_locale_to_utf8 (s, -1, NULL, NULL, NULL);<br>}<br><br><br><br>Many thanks!&nbsp; Please CC me.
<br><br><br>bob (ishmal)<br><br></font></span>