summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-25 16:37:08 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-25 16:37:08 +0000
commit86075b391c354edf591269e3901174c22317d4b2 (patch)
tree27c6cc08dcc7d92b56d84d20cdb447e8b1cdf5c8
parentd0f79295a9dccba8d490fa3c54b394a23a30a5a6 (diff)
downloadmpv-86075b391c354edf591269e3901174c22317d4b2.tar.bz2
mpv-86075b391c354edf591269e3901174c22317d4b2.tar.xz
typo in XFORM asm check, noticed by Emanuele Giaquinta
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29232 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4622aa5e68..ae6ea1801f 100755
--- a/configure
+++ b/configure
@@ -2616,7 +2616,7 @@ def_xform_asm='#define HAVE_XFORM_ASM 0'
xform_asm=no
echocheck "XFORM ASM support"
cat > $TMPC << EOF
-int main(void) { __asm__ volatile ("lwzx 0, %y0" :: "Z"(*(int*)0)"); return 0; }
+int main(void) { __asm__ volatile ("lwzx 0, %y0" :: "Z"(*(int*)0)); return 0; }
EOF
cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
echores "$xform_asm"