mirror of
https://github.com/termux/termux-packages.git
synced 2025-05-11 16:43:53 +00:00
Disable doc-format option with g-ir-scanner program. That option is available in gobject-introspection >= 1.83.2 but host ubuntu has 1.80.1.
13 lines
394 B
Diff
13 lines
394 B
Diff
--- a/src/meson.build
|
|
+++ b/src/meson.build
|
|
@@ -455,7 +455,8 @@
|
|
'--quiet',
|
|
'-DADWAITA_COMPILATION',
|
|
]
|
|
- if gir_dep.version().version_compare('>=1.83.2')
|
|
+ # TODO: Remove this after gobject-introspection 1.84.0 update in host system
|
|
+ if false and gir_dep.version().version_compare('>=1.83.2')
|
|
libadwaita_gir_extra_args += [
|
|
'--doc-format=gi-docgen',
|
|
]
|