mirror of https://git.ffmpeg.org/ffmpeg.git
use $CFLAGS and $LDFLAGS in dlopen() check
Originally committed as revision 4710 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
348e52c91d
commit
fd2ab74aae
|
@ -1030,12 +1030,12 @@ EOF
|
||||||
|
|
||||||
ldl=-ldl
|
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
|
dlfcn=yes
|
||||||
dlopen=yes
|
dlopen=yes
|
||||||
fi
|
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
|
dlfcn=yes
|
||||||
dlopen=yes
|
dlopen=yes
|
||||||
ldl=""
|
ldl=""
|
||||||
|
@ -1045,11 +1045,11 @@ cat > $TMPC << EOF
|
||||||
int main( void ) { return (int) dlopen("foo", 0); }
|
int main( void ) { return (int) dlopen("foo", 0); }
|
||||||
EOF
|
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
|
dlopen=yes
|
||||||
fi
|
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
|
dlopen=yes
|
||||||
ldl=""
|
ldl=""
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue