Re: [Mingw-w64-public] PostgreSQL builds with MinGW-w64

2011-02-23 Thread Mark Dootson
Hi, I recently struggled and failed to build same. Reduced to using an ms tool chain to build a libpq.dll However, I had not found Andrew's patch which is on the pgsql.hackers list on 28th Jan I looks straightforward enough that you should be able to adapt if not apply directly to the 9.0.3 s

Re: [Mingw-w64-public] Crash Issue

2011-02-23 Thread Chris Sutcliffe
Hi NightStrike, On 23/02/2011 7:20 PM, NightStrike wrote: > Do you need more help with the below issue? No, I figured it out, but thank you for the offer. It turns out, as JonY suggested regarding the Interface definition, i686-w64-mingw32 (and mingw32.org for that matter), didn't like how I d

Re: [Mingw-w64-public] Crash Issue

2011-02-23 Thread NightStrike
Chris, Do you need more help with the below issue? On Sun, Feb 6, 2011 at 8:57 AM, JonY wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 2/6/2011 21:27, Chris Sutcliffe wrote: >> Hi All, >> >> I've run in to a crash issue in my app when compiled with >> i686-w64-mingw32, yet it w

Re: [Mingw-w64-public] Missing implementation for ITaskbarList and ITaskbarList2

2011-02-23 Thread JonY
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2/23/2011 18:04, GABRIELE FERRERI wrote: > Hi all, > I'm trying to build Blender project with MinGW-W64 and I recently experience > some issues: > ..\..\lib\libbf_intern_ghost.a(GHOST_WindowWin32.cpp.obj):GHOST_WindowWin32.cpp:(.text+0x179b): > u

Re: [Mingw-w64-public] Bugs in setjmp.h

2011-02-23 Thread Kai Tietz
2011/2/23 Dongsheng Song : > On Wed, Feb 23, 2011 at 17:20, Kai Tietz wrote: >> >> >> Hmm, that NULL isn't defined is the issue. So it looks for me more >> >> like a missing header include of stddef.h, or stdlib.h. >> > >> > Yes, but since Linux GCC and MS VC no need include the extra header >> >

[Mingw-w64-public] Missing implementation for ITaskbarList and ITaskbarList2

2011-02-23 Thread GABRIELE FERRERI
Hi all, I'm trying to build Blender project with MinGW-W64 and I recently experience some issues: ..\..\lib\libbf_intern_ghost.a(GHOST_WindowWin32.cpp.obj):GHOST_WindowWin32.cpp:(.text+0x179b): undefined reference to `IID_ITaskbarList' ..\..\lib\libbf_intern_ghost.a(GHOST_WindowWin32.cpp.obj):GH

Re: [Mingw-w64-public] Bugs in setjmp.h

2011-02-23 Thread Dongsheng Song
On Wed, Feb 23, 2011 at 17:20, Kai Tietz wrote: > >> Hmm, that NULL isn't defined is the issue. So it looks for me more > >> like a missing header include of stddef.h, or stdlib.h. > > > > Yes, but since Linux GCC and MS VC no need include the extra header > files, I > > think > > this should co

Re: [Mingw-w64-public] Bugs in setjmp.h

2011-02-23 Thread Kai Tietz
2011/2/23 Dongsheng Song : > On Wed, Feb 23, 2011 at 16:20, Kai Tietz wrote: >> >> 2011/2/23 Dongsheng Song : >> > Sorry, here is the update source can be compiled by MS VC: >> > >> > $ cat have_sse.c >> > #include >> > #include >> > >> > jmp_buf env; >> > int have_sse_unit = 1; >> > >> > void i

Re: [Mingw-w64-public] Bugs in setjmp.h

2011-02-23 Thread Dongsheng Song
On Wed, Feb 23, 2011 at 16:20, Kai Tietz wrote: > 2011/2/23 Dongsheng Song : > > Sorry, here is the update source can be compiled by MS VC: > > > > $ cat have_sse.c > > #include > > #include > > > > jmp_buf env; > > int have_sse_unit = 1; > > > > void illegal_instruction_catcher(int ignore) { >

Re: [Mingw-w64-public] Bugs in setjmp.h

2011-02-23 Thread Kai Tietz
2011/2/23 Dongsheng Song : > Sorry, here is the update source can be compiled by MS VC: > > $ cat have_sse.c > #include > #include > > jmp_buf env; > int have_sse_unit = 1; > > void illegal_instruction_catcher(int ignore) { >   signal(SIGILL, SIG_DFL); >   longjmp(env, 1); > } > > unsigned int ss