termux-packages/packages/glib/meson.build.patch

31 lines
997 B
Diff
Raw Permalink Normal View History

2022-03-24 13:31:30 +01:00
--- a/meson.build
+++ b/meson.build
@@ -464,7 +464,6 @@
2021-12-11 11:24:41 +01:00
'-Wno-format-zero-length',
2022-03-24 13:31:30 +01:00
# We explicitly require variadic macros
'-Wno-variadic-macros',
2019-05-11 23:27:58 +02:00
- '-Werror=format=2',
'-Werror=init-self',
'-Werror=missing-include-dirs',
2022-03-24 13:31:30 +01:00
'-Werror=pointer-arith',
@@ -545,7 +544,6 @@
2021-12-31 06:59:19 +01:00
'getresuid',
'getvfsstat',
'gmtime_r',
- 'hasmntopt',
'inotify_init1',
'issetugid',
'kevent',
2022-03-24 13:31:30 +01:00
@@ -2088,9 +2086,8 @@
# FIXME: glib-gettext.m4 has much more checks to detect broken/uncompatible
# implementations. This could be extended if issues are found in some platforms.
libintl_deps = []
2022-03-24 13:31:30 +01:00
-if cc.has_function('ngettext')
- have_bind_textdomain_codeset = cc.has_function('bind_textdomain_codeset')
2019-06-12 04:27:15 +02:00
-else
+have_bind_textdomain_codeset = cc.has_function('bind_textdomain_codeset')
+if host_system != 'android'
# First just find the bare library.
libintl = cc.find_library('intl', required : false)
# The bare library probably won't link without help if it's static.