diff options
author | Måns Rullgård <mans@mansr.com> | 2008-03-18 09:36:29 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-03-18 09:36:29 +0000 |
commit | 2081f3c619a365da56a3192d1691662602e08468 (patch) | |
tree | d112e434672b69798bc3260bac1201cc5635b89e | |
parent | b4d96ba2a838d26e469887dfb1c6088005d09f0b (diff) | |
download | ffmpeg-2081f3c619a365da56a3192d1691662602e08468.tar.gz |
fix extern prefix detection on mingw
Originally committed as revision 12485 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1494,7 +1494,7 @@ fi check_cc <<EOF || die "Symbol mangling check failed." int ff_extern; EOF -sym=$(nm -P $TMPO) +sym=$(nm -P -g $TMPO) extern_prefix=${sym%%ff_extern*} check_asm inline_asm '""' |