qulogic/libgnt

Remove unnecessary checks in libgnt configure.

2016-08-28, Elliott Sales de Andrade
9064526f0678
Remove unnecessary checks in libgnt configure.

I'm not too sure this configure.ac is even used at this point.
#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;
}