[haiku-commits] r38561 - haiku/trunk/src/add-ons/media/plugins/ffmpeg/libswscale

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 7 Sep 2010 13:10:58 +0200 (CEST)

Author: stippi
Date: 2010-09-07 13:10:57 +0200 (Tue, 07 Sep 2010)
New Revision: 38561
Changeset: http://dev.haiku-os.org/changeset/38561

Modified:
   haiku/trunk/src/add-ons/media/plugins/ffmpeg/libswscale/Jamfile
Log:
yuv2rgb_mmx.c will now include other files depending on whether
GPL code is enabled or not. We need to build it in either case.


Modified: haiku/trunk/src/add-ons/media/plugins/ffmpeg/libswscale/Jamfile
===================================================================
--- haiku/trunk/src/add-ons/media/plugins/ffmpeg/libswscale/Jamfile     
2010-09-07 11:09:48 UTC (rev 38560)
+++ haiku/trunk/src/add-ons/media/plugins/ffmpeg/libswscale/Jamfile     
2010-09-07 11:10:57 UTC (rev 38561)
@@ -12,10 +12,8 @@
 archSources = ;
 
 if $(TARGET_ARCH) = x86 {
-       if $(HAIKU_INCLUDE_GPL_ADDONS) = 1 {
-               archSources += yuv2rgb_mmx.c ;
-               SubDirHdrs [ FDirName $(SUBDIR) $(TARGET_ARCH) ] ;
-       }
+       archSources += yuv2rgb_mmx.c ;
+       SubDirHdrs [ FDirName $(SUBDIR) $(TARGET_ARCH) ] ;
 } else if $(TARGET_ARCH) = ppc {
        archSources += swscale_altivec_template.c  yuv2rgb_altivec.c ;
 } else if $(TARGET_ARCH) = sparc {


Other related posts:

  • » [haiku-commits] r38561 - haiku/trunk/src/add-ons/media/plugins/ffmpeg/libswscale - superstippi