qulogic/libgnt

Merged in default (pull request #9)

2019-03-08, Gary Kramlich
4c75f5751615
Merged in default (pull request #9)

Introspection fix and ignore tweaks

Approved-by: Elliott Sales de Andrade
  • +3 -0
    .hgignore
  • +2 -2
    meson.build
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/.hgignore Fri Mar 08 03:45:29 2019 +0000
    @@ -0,0 +1,3 @@
    +syntax: regexp
    +build.*\/
    +
    --- a/meson.build Fri Mar 08 02:55:49 2019 +0000
    +++ b/meson.build Fri Mar 08 03:45:29 2019 +0000
    @@ -214,7 +214,7 @@
    install : true,
    install_dir : join_paths(get_option('includedir'), 'gnt'))
    # This is temporary until we can hide GObject internals:
    -configure_file(input : 'gnt.h.in', output : 'gnt.h',
    +gnt_h = configure_file(input : 'gnt.h.in', output : 'gnt.h',
    configuration : gnt_config,
    install : true,
    install_dir : join_paths(get_option('includedir'), 'gnt'))
    @@ -258,7 +258,7 @@
    if get_option('introspection') and host_machine.system() != 'windows'
    libgnt_gir = gnome.generate_gir(libgnt,
    - sources : libgnt_headers,
    + sources : libgnt_headers + [gnt_h],
    includes : 'GObject-2.0',
    namespace : 'Gnt',
    symbol_prefix : 'gnt',