From 90e1943450850d85003411f47d8b4ea17e08d41d Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 2 Nov 2019 21:04:36 +0530 Subject: build-tools: Replace yasm with nasm nasm is much more maintained than yasm now, and projects specifically require nasm, and newer versions too. Also, don't pass `--enable-win32threads` to x264 on Windows. It generates a warning since the option is actually `--disable-win32threads`, and the default is already what we want. --- recipes/libjpeg-turbo.recipe | 7 ------- 1 file changed, 7 deletions(-) (limited to 'recipes/libjpeg-turbo.recipe') diff --git a/recipes/libjpeg-turbo.recipe b/recipes/libjpeg-turbo.recipe index 92b4628a..c790335a 100644 --- a/recipes/libjpeg-turbo.recipe +++ b/recipes/libjpeg-turbo.recipe @@ -12,15 +12,8 @@ class Recipe(recipe.Recipe): configure_tpl = "%(config-sh)s --prefix=%(prefix)s "\ "--libdir=%(libdir)s" configure_options = " --with-jpeg8" - autoreconf = True patches = [] files_libs = ['libjpeg','libturbojpeg'] files_devel = ['include/jpeglib.h', 'include/jerror.h', 'include/jconfig.h', 'include/jmorecfg.h','include/turbojpeg.h', 'lib/pkgconfig/libjpeg.pc'] - - def prepare(self): - if self.config.target_platform in [Platform.DARWIN, Platform.IOS]: - # avoid using xcode's nasm (doesn't support nasm-like arguments) - # instead use cerbero's yasm - self.set_env('NASM', 'yasm') -- cgit v1.2.3