diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-02-04 11:56:52 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-02-04 11:58:09 -0500 |
commit | d080be3e5091c98d5171063a95d55c01170881f3 (patch) | |
tree | 72b2621ee1a2ea201c4c70f568ff869cc5520037 /meson.build | |
parent | 25e199e7b789894f020ec740ff4a9419207f6a61 (diff) | |
download | gtk+-d080be3e5091c98d5171063a95d55c01170881f3.tar.gz |
Rename some references to GTK+
We are dropping the plus.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meson.build b/meson.build index 0385d15b07..70c12a1fdc 100644 --- a/meson.build +++ b/meson.build @@ -864,27 +864,27 @@ pkgconf.set('GTK_EXTRA_CFLAGS', '') pkg_install_dir = join_paths(get_option('libdir'), 'pkgconfig') -pkgs = [ 'gtk+-4.0.pc' ] +pkgs = [ 'gtk4.pc' ] pkg_targets = '' foreach backend: [ 'broadway', 'quartz', 'wayland', 'win32', 'x11', ] if get_variable('@0@_enabled'.format(backend)) - pkgs += ['gtk+-@0@-4.0.pc'.format(backend)] + pkgs += ['gtk4-@0@.pc'.format(backend)] pkg_targets += ' ' + backend endif endforeach pkgconf.set('GDK_BACKENDS', pkg_targets.strip()) foreach pkg: pkgs - configure_file(input: 'gtk+-4.0.pc.in', + configure_file(input: 'gtk4.pc.in', output: pkg, configuration: pkgconf, install_dir: pkg_install_dir) endforeach if os_unix - configure_file(input: 'gtk+-unix-print-4.0.pc.in', - output: 'gtk+-unix-print-4.0.pc', + configure_file(input: 'gtk4-unix-print.pc.in', + output: 'gtk4-unix-print.pc', configuration: pkgconf, install_dir: pkg_install_dir) endif @@ -907,7 +907,7 @@ meson.add_install_script('build-aux/meson/post-install.sh', summary = [ '', '------', - 'GTK+ @0@ (@1@)'.format(gtk_version, gtk_api_version), + 'GTK @0@ (@1@)'.format(gtk_version, gtk_api_version), '', ' Display backends: @0@'.format(pkg_targets.strip()), ' Print backends: @0@'.format(' '.join(print_backends)), |