make sdl dlopen the correct libraries

2012-03-03 Thread Jonathan Gray
The configure script for sdl selects the wrong libraries to dlopen, ie it picked libX11.so.10.0 on a system with libX11.so.9 - 15 With the following diff sdl programs no longer segfault here. Index: Makefile === RCS file:

Re: make sdl dlopen the correct libraries

2012-03-03 Thread Antti Harri
On Saturday 03 March 2012 11:25:17 Jonathan Gray wrote: The configure script for sdl selects the wrong libraries to dlopen, ie it picked libX11.so.10.0 on a system with libX11.so.9 - 15 With the following diff sdl programs no longer segfault here. [snip] I started seeing this too when I

Re: make sdl dlopen the correct libraries

2012-03-03 Thread Jonathan Gray
On Sat, Mar 03, 2012 at 08:25:17PM +1100, Jonathan Gray wrote: The configure script for sdl selects the wrong libraries to dlopen, ie it picked libX11.so.10.0 on a system with libX11.so.9 - 15 With the following diff sdl programs no longer segfault here. here is the diff I meant to send that

Re: make sdl dlopen the correct libraries

2012-03-03 Thread Brad Smith
On Sat, Mar 03, 2012 at 08:25:17PM +1100, Jonathan Gray wrote: The configure script for sdl selects the wrong libraries to dlopen, ie it picked libX11.so.10.0 on a system with libX11.so.9 - 15 With the following diff sdl programs no longer segfault here. This is great, just there is a typo

Re: make sdl dlopen the correct libraries

2012-03-03 Thread Stuart Henderson
this explains why these WANTLIB ended up being removed from probably hundreds of ports ;) this version is OK with me. On 2012/03/03 05:36, Brad Smith wrote: On Sat, Mar 03, 2012 at 08:25:17PM +1100, Jonathan Gray wrote: The configure script for sdl selects the wrong libraries to dlopen, ie

Re: make sdl dlopen the correct libraries

2012-03-03 Thread David Coppa
On Sat, Mar 3, 2012 at 11:48 AM, Stuart Henderson s...@spacehopper.org wrote: this explains why these WANTLIB ended up being removed from probably hundreds of ports ;) this version is OK with me. Brad's version of the diff is ok with me too ciao, David