On Sat, Nov 23, 2013 at 07:23:43PM +0100, Vittorio Giovara wrote:
> --- a/configure
> +++ b/configure
> @@ -804,6 +808,19 @@ check_ldflags(){
>
> +test_stripflags(){
> + log test_stripflags "$@"
> + cat > $TMPC <<EOF
> +int main(void){ return 0; }
> +EOF
> + check_cmd $strip $STRIPFLAGS "$@" $TMPO
> +}
This does not do anything with TMPC. What is your intention?
> @@ -3954,6 +3971,11 @@ check_ldflags -Wl,--warn-common
>
> +# add some strip flags
> +# -wN '..@*' is more selective than -x but not available everywhere
> +# however when both are unavailable do not strip at all
> +check_stripflags -wN '..@*' || check_stripflags -x || strip='true'
I suspect this will kill the single quotes.
Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel