Hi all,<br><br>I'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
: in /glib, the Makefile needs to call libtool with "--mode=link
g++" instead of gcc. I don't know how to do that in <a href="http://Makefile.am">Makefile.am</a>, but
that's what it needs. 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> time_t time = (time_t) utime;<br> struct tm *t;<br> char s[256];<br> const char *fmt_hack = "%c";<br> size_t len;<br><br> if (time == 0 || !(t = localtime (&time)) ) return NULL;
<br><br> len = strftime (s, sizeof (s), fmt_hack, t);<br> if (len == 0 || s[0] == '\0') return NULL;<br><br> return g_locale_to_utf8 (s, -1, NULL, NULL, NULL);<br>}<br><br><br><br>Many thanks! Please CC me.
<br><br><br>bob (ishmal)<br><br></font></span>