summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-26 08:59:18 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-26 08:59:18 +0000
commit480a9e563cb3f2736c127c65652029c388e1f0c0 (patch)
treeaaccb511f415c48d2c703d3a64b4b3403460899e /configure
parentaa169c6fe354896b161fc13f82db36c4ad63534e (diff)
downloadmpv-480a9e563cb3f2736c127c65652029c388e1f0c0.tar.bz2
mpv-480a9e563cb3f2736c127c65652029c388e1f0c0.tar.xz
Revert previous two commits, the CoreVideo vo needs both OpenGL and Cocoa.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29238 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index fc30e9c1d7..e7d82521e4 100755
--- a/configure
+++ b/configure
@@ -3858,11 +3858,11 @@ if test "$_corevideo" = auto ; then
int main(void) { return 0; }
EOF
_corevideo=no
- cc_check -framework Carbon -framework QuartzCore && _corevideo=yes
+ cc_check -framework Carbon -framework QuartzCore -framework OpenGL && _corevideo=yes
fi
if test "$_corevideo" = yes ; then
_vomodules="macosx $_vomodules"
- extra_ldflags="$extra_ldflags -framework Carbon -framework QuartzCore"
+ extra_ldflags="$extra_ldflags -framework Cocoa -framework QuartzCore -framework OpenGL"
def_corevideo='#define CONFIG_COREVIDEO 1'
else
_novomodules="macosx $_novomodules"