aboutsummaryrefslogtreecommitdiff
path: root/editors/hexedit/files
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-06-24 20:53:28 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-06-24 20:53:28 +0000
commit490a0c3acaee7357455ef9ade6b7b38f14bc6223 (patch)
treec1077ef976e37f24fb170fc421c614d6de2a006d /editors/hexedit/files
parent74aada477d30000e6ac65f94700daee685b344f1 (diff)
Notes
Diffstat (limited to 'editors/hexedit/files')
-rw-r--r--editors/hexedit/files/patch-aa14
-rw-r--r--editors/hexedit/files/patch-ab16
2 files changed, 0 insertions, 30 deletions
diff --git a/editors/hexedit/files/patch-aa b/editors/hexedit/files/patch-aa
deleted file mode 100644
index 104512a9dcbb..000000000000
--- a/editors/hexedit/files/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
---- 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
diff --git a/editors/hexedit/files/patch-ab b/editors/hexedit/files/patch-ab
deleted file mode 100644
index 05a59be69775..000000000000
--- a/editors/hexedit/files/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
---- configure.in.orig Thu Sep 10 17:23:35 1998
-+++ configure.in Sun Dec 6 15:31:53 1998
-@@ -23,10 +23,11 @@
- AC_PROG_INSTALL
-
- dnl Checks for libraries.
--AC_CHECK_LIB(curses, initscr, LIBS="$LIBS -lcurses",
--AC_CHECK_LIB(ncurses, initscr, LIBS="$LIBS -lncurses"))
-+AC_CHECK_LIB(ncurses, initscr, LIBS="$LIBS -lncurses",
-+AC_CHECK_LIB(curses, initscr, LIBS="$LIBS -lcurses"))
-
- dnl Checks for header files.
-+AC_CHECK_HEADER(ncurses.h, [AC_DEFINE(HAVE_NCURSES_H)])
- AC_HEADER_STDC
- AC_HEADER_SYS_WAIT
- AC_CHECK_HEADERS(fcntl.h unistd.h)