]> git.sesse.net Git - ffmpeg/commitdiff
use $CFLAGS and $LDFLAGS in dlopen() check
authorMåns Rullgård <mans@mansr.com>
Tue, 29 Nov 2005 21:12:30 +0000 (21:12 +0000)
committerMåns Rullgård <mans@mansr.com>
Tue, 29 Nov 2005 21:12:30 +0000 (21:12 +0000)
Originally committed as revision 4710 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index c3cf948bcb3772e30cd471ca0d74afbf4fbf073b..f0e881d2f65babddef07f4db74d0596f20615dfb 100755 (executable)
--- a/configure
+++ b/configure
@@ -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