提交 fd2ab74a 编写于 作者: M Måns Rullgård

use $CFLAGS and $LDFLAGS in dlopen() check

Originally committed as revision 4710 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 348e52c9
......@@ -1030,12 +1030,12 @@ EOF
ldl=-ldl
if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
dlfcn=yes
dlopen=yes
fi
if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then
if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC > /dev/null 2>&1 ; then
dlfcn=yes
dlopen=yes
ldl=""
......@@ -1045,11 +1045,11 @@ cat > $TMPC << EOF
int main( void ) { return (int) dlopen("foo", 0); }
EOF
if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
dlopen=yes
fi
if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then
if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC > /dev/null 2>&1 ; then
dlopen=yes
ldl=""
fi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册