summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-17 21:46:18 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-17 21:46:18 +0000
commita79e76be8c1fffebf414096ed148008604aa2599 (patch)
tree65a46e5eed77c9531f2ede9723ac1c555363b10e /configure
parent5b6975fe215989273b92dd1dedfedac674213419 (diff)
downloadmpv-a79e76be8c1fffebf414096ed148008604aa2599.tar.bz2
mpv-a79e76be8c1fffebf414096ed148008604aa2599.tar.xz
10l fix by Steven M. Schultz <sms@2BSD.COM>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10298 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index a27d0eb399..01bb31e926 100755
--- a/configure
+++ b/configure
@@ -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