diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-02-01 10:37:17 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-22 22:22:39 +0100 |
commit | 652df51affe4d6684aced4943cc1806b05376c21 (patch) | |
tree | 528327bc8e370dfa1320021dbfe450b9c2cc5694 /config | |
parent | 2aa5c7c703d3745c813a9493b55c581d195655a6 (diff) |
Set GLib/pixman configure check overrides in the ios.config instead of recipes
Diffstat (limited to 'config')
-rw-r--r-- | config/ios.config | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/ios.config b/config/ios.config index f3e6b1e..3b12e87 100644 --- a/config/ios.config +++ b/config/ios.config @@ -65,3 +65,14 @@ if ios_platform == "iPhoneOS": if use_ccache: os.environ['CC'] += 'ccache gcc' os.environ['CXX'] += 'ccache g++' + +# For GLib +os.environ['glib_cv_stack_grows'] = 'yes' +os.environ['glib_cv_uscore'] = 'no' +os.environ['ac_cv_func_posix_getpwuid_r'] = 'yes' +os.environ['ac_cv_func_posix_getgrgid_r'] = 'yes' +os.environ['gt_cv_c_wchar_t'] = 'no' + +# For pixman +os.environ['ac_cv_tls'] = 'none' + |