On 10/01/2011 08:03 AM, JonY wrote:
Hi,
I followed Paolo's suggestion with the os_defines.h trick. I duplicated
os/mingw32/ to os/mingw32-w64/ for this to work, since there aren't any
built-in defines to tell the 2 apart unless you include some headers
like _mingw.h.
Patch attached, comments?
These:
+#if !defined (_GLIBCXX_FULLY_DYNAMIC_STRING) || (_GLIBCXX_FULLY_DYNAMIC_STRING
== 0)
can be simplified to just:
+#if _GLIBCXX_FULLY_DYNAMIC_STRING == 0
Ok with those changes and a proper ChangeLog entry, of course.
Thanks,
Paolo.