Re: [libav-devel] [PATCH] configure: properly support DEC/Compaq compiler

2012-11-12 Thread Diego Biurrun
On Mon, Nov 12, 2012 at 11:07:07AM +, Mans Rullgard wrote: > --- a/configure > +++ b/configure > @@ -2108,6 +2108,24 @@ EOF > > +ccc_flags(){ > +for flag; do > +case $flag in > +-O*|-fast) echo $flag ;; > +-f*|-W*)

Re: [libav-devel] [PATCH] configure: properly support DEC/Compaq compiler

2012-11-12 Thread Luca Barbato
On 11/12/12 12:07 PM, Mans Rullgard wrote: Signed-off-by: Mans Rullgard --- Although obscure, we should either support this compiler properly or not pretend to support it at all. Since it does produce a working build and provides some useful warnings rarely found in other compilers, keeping it

[libav-devel] [PATCH] configure: properly support DEC/Compaq compiler

2012-11-12 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- Although obscure, we should either support this compiler properly or not pretend to support it at all. Since it does produce a working build and provides some useful warnings rarely found in other compilers, keeping it seems like a good choice. --- configure | 40