diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-10-22 16:48:06 -0700 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-10-23 05:20:42 +0530 |
commit | 3e7446d570ed5fdbe0abd36be86eb28c750179da (patch) | |
tree | 42089fca89239b9ac9c7595ab51ce7fc7542e21e /recipes | |
parent | 8a4557f3d22050bb596bc6e8c105b5c44af69023 (diff) |
gdk-pixbuf.recipe: Don't use native windows loaders
This wasn't enabled with autotools, and it shouldn't be with meson.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gdk-pixbuf.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gdk-pixbuf.recipe b/recipes/gdk-pixbuf.recipe index 9bc4ed65..867f2f2b 100644 --- a/recipes/gdk-pixbuf.recipe +++ b/recipes/gdk-pixbuf.recipe @@ -36,7 +36,7 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform == Platform.WINDOWS: - self.meson_options['native_windows_loaders'] = 'true' + self.meson_options['native_windows_loaders'] = 'false' if self.config.prefix_is_executable(): self.files_misc = ['lib/gdk-pixbuf-2.0/2.10.0/loaders.cache'] else: |