blob: f0cd69caa775711a581351392f4d588184515908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
diff -rupN ipbt-20240909.a852474/unix/ipbt.c ipbt-20240909.a852474b/unix/ipbt.c
--- ipbt-20240909.a852474/unix/ipbt.c 2024-09-08 21:10:02.000000000 -0400
+++ ipbt-20240909.a852474b/unix/ipbt.c 2024-09-10 13:32:09.123423410 -0400
@@ -17,18 +17,7 @@
#define _XOPEN_SOURCE_EXTENDED
-#if CURSES_HAVE_NCURSES_CURSES_H
-# include <ncursesw/curses.h>
-#elif CURSES_HAVE_NCURSES_CURSES_H
-# include <ncurses/curses.h>
-#elif CURSES_HAVE_NCURSES_H
-# include <ncurses.h>
-#elif CURSES_HAVE_CURSES_H
-# include <curses.h>
-#else
-# error "SysV or X/Open-compatible Curses header file required"
-#endif
-
+#include <ncurses.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/ioctl.h>
|