1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/editors/hexedit/files/patch-aa
Steve Price b391cd0fc0 Update to version 1.0.0 and use ncurses in the base system.
PR:		9121
Submitted by:	maintainer
1999-01-10 18:58:32 +00:00

15 lines
290 B
Plaintext

--- hexedit.h.orig Mon Aug 31 20:50:50 1998
+++ hexedit.h Sun Dec 6 15:36:13 1998
@@ -12,7 +12,11 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
+#if HAVE_NCURSES_H
+#include <ncurses.h>
+#else
#include <curses.h>
+#endif
#include <ctype.h>
#include <signal.h>
#if HAVE_SYS_WAIT_H