qulogic/libgnt

Require meson 0.34.0 for build.
meson
2016-08-26, Elliott Sales de Andrade
dbdd3fe12493
Parents e7be65adb912
Children 920749e46bc8
Require meson 0.34.0 for build.

This version is not released yet, but I hope it will contain all the
patches I've written.
  • +7 -6
    meson.build
  • --- a/meson.build Tue Aug 23 02:15:40 2016 -0400
    +++ b/meson.build Fri Aug 26 22:49:15 2016 -0400
    @@ -1,12 +1,14 @@
    -gntmarshal_h = glib_genmarshal_h.process('gntmarshal',
    - extra_args : ['--prefix=gnt_closure_marshal'],
    - install : true,
    +marshallers = gnome.genmarshal('gntmarshal',
    + sources : 'gntmarshal',
    + prefix : 'gnt_closure_marshal',
    + install_header : true,
    install_dir : get_option('includedir') + '/gnt')
    -gntmarshal_c = glib_genmarshal_c.process('gntmarshal',
    - extra_args : ['--prefix=gnt_closure_marshal'])
    +gntmarshal_c = marshallers[0]
    +gntmarshal_h = marshallers[1]
    libgnt_SOURCES = [
    gntmarshal_c,
    + gntmarshal_h,
    'gntwidget.c',
    'gntbindable.c',
    'gntbox.c',
    @@ -20,7 +22,6 @@
    'gntkeys.c',
    'gntlabel.c',
    'gntline.c',
    - gntmarshal_h,
    'gntmenu.c',
    'gntmenuitem.c',
    'gntmenuitemcheck.c',