[MPlayer-cvslog] r32337 - trunk/configure
diego
subversion at mplayerhq.hu
Tue Sep 21 15:51:33 CEST 2010
Author: diego
Date: Tue Sep 21 15:51:33 2010
New Revision: 32337
Log:
Move ASMALIGN check into x86 section of configure.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Tue Sep 21 15:22:48 2010 (r32336)
+++ trunk/configure Tue Sep 21 15:51:33 2010 (r32337)
@@ -2638,18 +2638,6 @@ if x86_32 ; then
fi #if x86_32
-echocheck ".align is a power of two"
-if test "$_asmalign_pot" = auto ; then
-_asmalign_pot=no
-inline_asm_check '".align 3"' && _asmalign_pot=yes
-fi
-if test "$_asmalign_pot" = "yes" ; then
- def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
-else
- def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
-fi
-echores $_asmalign_pot
-
echocheck "PIC"
def_pic='#define CONFIG_PIC 0'
@@ -2668,6 +2656,20 @@ echores $pic
if x86 ; then
+
+echocheck ".align is a power of two"
+if test "$_asmalign_pot" = auto ; then
+_asmalign_pot=no
+inline_asm_check '".align 3"' && _asmalign_pot=yes
+fi
+if test "$_asmalign_pot" = "yes" ; then
+ def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
+else
+ def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
+fi
+echores $_asmalign_pot
+
+
echocheck "10 assembler operands"
ten_operands=no
def_ten_operands='#define HAVE_TEN_OPERANDS 0'
More information about the MPlayer-cvslog
mailing list