Conversation
031ffde to
34c3063
Compare
vkareh
requested changes
Apr 1, 2026
Comment on lines
+89
to
+96
| have_introspection = false | ||
| gobject_introspection_dep = dependency('gobject-introspection-1.0', | ||
| version: '>= 0.9.3', | ||
| required: get_option('introspection')) | ||
| if gobject_introspection_dep.found() | ||
| have_introspection = true | ||
| config_h.set('HAVE_INTROSPECTION', 1) | ||
| endif |
Member
There was a problem hiding this comment.
You need to also add the same check but for girepository-2.0 and use it to set HAVE_GIREPOSITORY_2 in the config_h. This is almost certainly why the CI is failing.
Comment on lines
+123
to
+130
| pluma_cflags = [ | ||
| '-I' + meson.current_source_dir(), | ||
| '-DDATADIR="@0@"'.format(datadir), | ||
| '-DPLUMA_DATADIR="@0@"'.format(pkgdatadir), | ||
| '-DPLUMA_LOCALEDIR="@0@"'.format(localedir), | ||
| '-DLIBDIR="@0@"'.format(libdir), | ||
| '-DPLUMA_LIBDIR="@0@"'.format(pkglibdir), | ||
| ] |
Member
There was a problem hiding this comment.
You seem to be duplicating these in config_h as well - is this intentional?
Comment on lines
+62
to
+63
| sm_dep = dependency('sm', version: '>= 1.0.0') | ||
| ice_dep = dependency('ice', version: '>= 1.0.0') |
Comment on lines
+122
to
+126
| subdir('pluma') | ||
| subdir('data') | ||
| subdir('po') | ||
| subdir('plugins') | ||
| subdir('help') |
|
|
||
| gnome.post_install( | ||
| glib_compile_schemas: true, | ||
| update_desktop_database: find_program('update-desktop-database', required: false).found(), |
Member
There was a problem hiding this comment.
I would just set this to true directly...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.