Anton Khirnov <[email protected]> writes: > On Sun, 01 Apr 2012 21:06:06 +0100, Måns Rullgård <[email protected]> wrote: >> Anton Khirnov <[email protected]> writes: >> >> > --- >> > configure | 1 + >> > 1 files changed, 1 insertions(+), 0 deletions(-) >> > >> > diff --git a/configure b/configure >> > index 78e1745..cef30c9 100755 >> > --- a/configure >> > +++ b/configure >> > @@ -1526,6 +1526,7 @@ cropdetect_filter_deps="gpl" >> > delogo_filter_deps="gpl" >> > drawtext_filter_deps="libfreetype" >> > frei0r_filter_deps="frei0r dlopen strtok_r" >> > +frei0r_filter_extralibs="$ldl" >> > frei0r_src_filter_deps="frei0r dlopen strtok_r" >> > hqdn3d_filter_deps="gpl" >> > ocv_filter_deps="libopencv" >> > -- >> >> This doesn't work the way you think. > > No? It worked for a user on IRC apparrently.
That change as no effect whatsoever. $ldl is expanded when that line evaluated, and that point its value is empty. It is set to -ldl much later if necessary. Using single quotes would do what was intended since the string is put through eval later on. That filter does indeed use dlopen(), so adding that flag seems correct. I do, however, wonder what your mystery IRC user was doing. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
