[xiph-commits] r16119 - branches/theora-thusnelda

giles at svn.xiph.org giles at svn.xiph.org
Sun Jun 14 00:27:36 PDT 2009


Author: giles
Date: 2009-06-14 00:27:36 -0700 (Sun, 14 Jun 2009)
New Revision: 16119

Modified:
   branches/theora-thusnelda/SConstruct
Log:
Use the new OC_X86_(64_)ASM defines in the scons build.

Previously we defined USE_ASM, but this flag is obsolete.

Modified: branches/theora-thusnelda/SConstruct
===================================================================
--- branches/theora-thusnelda/SConstruct	2009-06-14 06:56:14 UTC (rev 16118)
+++ branches/theora-thusnelda/SConstruct	2009-06-14 07:27:36 UTC (rev 16119)
@@ -127,7 +127,7 @@
   build_player_example=False
 
 if conf.CheckHost_x86_32():
-  env.Append(CPPDEFINES='USE_ASM')
+  env.Append(CPPDEFINES='OC_X86_ASM')
   decoder_sources += """
         dec/x86/mmxidct.c
         dec/x86/mmxfrag.c
@@ -144,7 +144,7 @@
 	dec/x86/x86state.c
   """
 elif conf.CheckHost_x86_64():
-  env.Append(CPPDEFINES='USE_ASM')
+  env.Append(CPPDEFINES=['OC_X86_ASM', 'OC_X86_64_ASM'])
   decoder_sources += """
         dec/x86/mmxidct.c
         dec/x86/mmxfrag.c



More information about the commits mailing list