Remove unnecessary -framework OpenGL from CoreVideo linker flags.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29235 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-04-25 18:39:19 +00:00
parent 1668788808
commit 2ce1ec49e7
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -3858,11 +3858,11 @@ if test "$_corevideo" = auto ; then
int main(void) { return 0; }
EOF
_corevideo=no
cc_check -framework Carbon -framework QuartzCore -framework OpenGL && _corevideo=yes
cc_check -framework Carbon -framework QuartzCore && _corevideo=yes
fi
if test "$_corevideo" = yes ; then
_vomodules="macosx $_vomodules"
extra_ldflags="$extra_ldflags -framework Cocoa -framework QuartzCore -framework OpenGL"
extra_ldflags="$extra_ldflags -framework Cocoa -framework QuartzCore"
def_corevideo='#define CONFIG_COREVIDEO 1'
else
_novomodules="macosx $_novomodules"