[FFmpeg-cvslog] r21324 - trunk/configure
mru
subversion
Tue Jan 19 16:52:41 CET 2010
Author: mru
Date: Tue Jan 19 16:52:40 2010
New Revision: 21324
Log:
configure: be more liberal with nm output
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Tue Jan 19 15:28:19 2010 (r21323)
+++ trunk/configure Tue Jan 19 16:52:40 2010 (r21324)
@@ -2223,7 +2223,7 @@ enabled pic && enable_pic
check_cc <<EOF || die "Symbol mangling check failed."
int ff_extern;
EOF
-sym=$($nm -P -g $TMPO | grep ff_extern)
+sym=$($nm -g $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^[:blank:]]*ff_extern/)) }')
extern_prefix=${sym%%ff_extern*}
check_cc <<EOF && enable inline_asm
More information about the ffmpeg-cvslog
mailing list