qulogic/libgnt

Update Python dependencies.
meson
2017-06-22, Elliott Sales de Andrade
1279a76cf004
Parents 52fe5a480c75
Children 9cf49fe25043
Update Python dependencies.

Use Python 3 module to find interpreter and correctly set the macro so
that the Python-related code is used.
  • +1 -3
    meson.build
  • --- a/meson.build Tue Jun 20 06:10:26 2017 -0400
    +++ b/meson.build Thu Jun 22 22:27:27 2017 -0400
    @@ -60,9 +60,7 @@
    install_headers(libgnt_headers, subdir : 'gnt')
    -libgnt_deps = [ncurses, libxml, glib, gobject, gmodule] #pythonlib]
    if IS_WIN32
    - libgnt_deps += [gmodule]
    libgnt_SOURCES += windows.compile_resources('libgnt_winres.rc')
    endif
    @@ -72,7 +70,7 @@
    include_directories : [toplevel_inc],
    install : true,
    version : GNT_LIB_VERSION,
    - dependencies : libgnt_deps)
    + dependencies : [ncurses, libxml, glib, gobject, gmodule, python_dep])
    libgnt_dep = declare_dependency(
    include_directories : [toplevel_inc, libgnt_inc],
    link_with : libgnt,