summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-13 10:02:37 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-13 10:02:37 +0000
commit83cec57c4351bb69a1916c14ad645f942de86304 (patch)
treedcbf2d20b8676766ddccd9034126f23b122d7dc8 /configure
parentdbe24cb2e6c8649719c4910961dbc24be14738db (diff)
downloadmpv-83cec57c4351bb69a1916c14ad645f942de86304.tar.bz2
mpv-83cec57c4351bb69a1916c14ad645f942de86304.tar.xz
-rdynamic is not supported on windows
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12190 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index a6e7c05254..9746d0b432 100755
--- a/configure
+++ b/configure
@@ -5801,7 +5801,9 @@ fi
_ld_dl_dynamic=''
bsd && _ld_dl_dynamic='-rdynamic'
test "$_xanim" = yes && _ld_dl_dynamic='-rdynamic'
-test "$_real" = yes && _ld_dl_dynamic='-rdynamic'
+if test "$_real" = yes && not win32 ; then
+ _ld_dl_dynamic='-rdynamic'
+fi
_ld_arch="$_ld_arch $_ld_pthread $_ld_dl $_ld_dl_dynamic"
bsdos && _ld_arch="$_ld_arch -ldvd"