summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-05 21:03:56 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-05 21:03:56 +0000
commit5bc20d8d3cad9bfa34c505fc1dababcbce3cc26a (patch)
tree3f7372ba7e7ee378a87b3322dc49abde78be5b76
parentd0022933fedf3ef4d890cb332d7ad41b92df6498 (diff)
downloadmpv-5bc20d8d3cad9bfa34c505fc1dababcbce3cc26a.tar.bz2
mpv-5bc20d8d3cad9bfa34c505fc1dababcbce3cc26a.tar.xz
LDFLAGS for CoreVideo and Quartz should be MPlayer-only.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29268 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 845b7b713c..61f78d80a8 100755
--- a/configure
+++ b/configure
@@ -3823,7 +3823,7 @@ EOF
cc_check -framework Carbon -framework QuickTime && _quartz=yes
fi
if test "$_quartz" = yes ; then
- extra_ldflags="$extra_ldflags -framework Carbon -framework QuickTime"
+ libs_mplayer="$libs_mplayer -framework Carbon -framework QuickTime"
def_quartz='#define CONFIG_QUARTZ 1'
_vomodules="quartz $_vomodules"
else
@@ -3846,7 +3846,7 @@ EOF
fi
if test "$_corevideo" = yes ; then
_vomodules="corevideo $_vomodules"
- extra_ldflags="$extra_ldflags -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
+ libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
def_corevideo='#define CONFIG_COREVIDEO 1'
else
_novomodules="corevideo $_novomodules"