diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-12-05 14:21:23 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-12-05 14:21:23 +0200 |
commit | 6c7b7b47d42f310efa73ac42aa9f349d84b46341 (patch) | |
tree | ff0e178ee7f730c2b432fcc9e347eaab381ec773 /recipes/build-tools/glib-tools.recipe | |
parent | 73bc97607e0cce76eb1ebff9670201b8fc40c4e9 (diff) |
glib: Disable libmount for all platforms for now
We might want to package it for Linux, or use it as sysdep
Diffstat (limited to 'recipes/build-tools/glib-tools.recipe')
-rw-r--r-- | recipes/build-tools/glib-tools.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/build-tools/glib-tools.recipe b/recipes/build-tools/glib-tools.recipe index cc865d07..3474fe78 100644 --- a/recipes/build-tools/glib-tools.recipe +++ b/recipes/build-tools/glib-tools.recipe @@ -8,7 +8,7 @@ class Recipe(recipe.Recipe): tarball_dirname = 'glib-%(version)s' licenses = [License.LGPLv2Plus] config_sh = 'sh autogen.sh' - configure_options = '--with-pcre=internal' + configure_options = '--with-pcre=internal --disable-libmount ' deps = ['libffi', 'zlib'] can_use_configure_cache = False patches = ["../glib/0001-Let-user-disable-Cocoa-and-Carbon-support-on-demand.patch", @@ -26,7 +26,7 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform != Platform.LINUX: - self.configure_options += ' --disable-gtk-doc --disable-libmount ' + self.configure_options += ' --disable-gtk-doc ' elif self.config.target_platform == Platform.WINDOWS: self.configure_options = '--with-libiconv=gnu' self.append_env['CFLAGS'] = ' -DMINGW_HAS_SECURE_API=1 ' |