1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 17:12:36 +00:00

10l fix by Steven M. Schultz <sms@2BSD.COM>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10298 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-06-17 21:46:18 +00:00
parent 5b6975fe21
commit a79e76be8c

8
configure vendored
View File

@ -1995,14 +1995,14 @@ cat > $TMPC << EOF
#include <altivec.h>
int main(void) { return 0; }
EOF
_altivec=no
cc_check && _altivec=yes
if test "$_altivec" = yes ; then
_have_altivec_h=no
cc_check && _have_altivec_h=yes
if test "$_have_altivec_h" = yes ; then
_def_altivec_h='#define HAVE_ALTIVEC_H 1'
else
_def_altivec_h='#undef HAVE_ALTIVEC_H'
fi
echores "$_altivec"
echores "$_have_altivec_h"
else
_def_altivec_h='#undef HAVE_ALTIVEC_H'
fi