Re: [FFmpeg-devel] [PATCH] configure: check for dlsym as well

2016-09-02 Thread Timo Rothenpieler
> > LGTM completely forgot about this applied ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] configure: check for dlsym as well

2016-09-02 Thread James Almer
On 9/1/2016 6:23 AM, Timo Rothenpieler wrote: > For some reason, when compiling with gcc-asan and a recent enough gcc > version(seen on 5.3+ so far), linking dlopen works without -ldl, but > dlsym fails with: > > undefined reference to symbol 'dlsym@@GLIBC_2.2.5' > > So this patchs checks for bot

[FFmpeg-devel] [PATCH] configure: check for dlsym as well

2016-09-01 Thread Timo Rothenpieler
For some reason, when compiling with gcc-asan and a recent enough gcc version(seen on 5.3+ so far), linking dlopen works without -ldl, but dlsym fails with: undefined reference to symbol 'dlsym@@GLIBC_2.2.5' So this patchs checks for both dlopen and dlsym to work for determining if -ldl is needed