diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-09 17:14:32 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-09 20:07:05 +0200 |
commit | c72f12cbae93671cbd390eb51ce62573b443bf6c (patch) | |
tree | d703a39c40ae43ae06135a942584ee22de5253e2 /configure | |
parent | 804d7a1aa6fd33fbe405698d90d02121423e540c (diff) | |
download | ffmpeg-c72f12cbae93671cbd390eb51ce62573b443bf6c.tar.gz |
configure: suncc: Add -xc99 to dependency flags, required on Solaris
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2196,7 +2196,7 @@ probe_cc(){ _type=suncc _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-) _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)' - _DEPFLAGS='-xM1' + _DEPFLAGS='-xM1 -xc99' _ldflags='-std=c99' _cflags_speed='-O5' _cflags_size='-O5 -xspace' |