diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-06-17 21:46:18 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-06-17 21:46:18 +0000 |
commit | a79e76be8c1fffebf414096ed148008604aa2599 (patch) | |
tree | 65a46e5eed77c9531f2ede9723ac1c555363b10e /configure | |
parent | 5b6975fe215989273b92dd1dedfedac674213419 (diff) |
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-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |