qulogic/libgnt

Update Python dependencies.
meson
2017-06-22, Elliott Sales de Andrade
1279a76cf004
Update Python dependencies.

Use Python 3 module to find interpreter and correctly set the macro so
that the Python-related code is used.
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}