diff options
author | frueauf <frueauf@pkgsrc.org> | 1998-08-24 11:58:04 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 1998-08-24 11:58:04 +0000 |
commit | 432258195f4ff96905b564ac7200d813f368d285 (patch) | |
tree | 524b461e5b8fa77be6264ced08123a97f771515a /editors/hexedit/patches | |
parent | 2623d860ad3164f67194577c932677ed43b18c60 (diff) | |
download | pkgsrc-432258195f4ff96905b564ac7200d813f368d285.tar.gz |
Initial addition of hexedit-0.9.4, to view and edit files in hexadecimal
or ASCII.
Diffstat (limited to 'editors/hexedit/patches')
-rw-r--r-- | editors/hexedit/patches/patch-aa | 24 | ||||
-rw-r--r-- | editors/hexedit/patches/patch-ab | 13 |
2 files changed, 37 insertions, 0 deletions
diff --git a/editors/hexedit/patches/patch-aa b/editors/hexedit/patches/patch-aa new file mode 100644 index 00000000000..8defbb4c72d --- /dev/null +++ b/editors/hexedit/patches/patch-aa @@ -0,0 +1,24 @@ +$NetBSD: patch-aa,v 1.1 1998/08/24 11:58:05 frueauf Exp $ + +--- Makefile.orig Fri Aug 7 17:09:38 1998 ++++ Makefile Mon Aug 24 13:01:04 1998 +@@ -2,7 +2,7 @@ + VERSION = 0.9.4 + + # Define BASENAME if your libc doesn't have it +-#BASENAME=-DBASENAME ++BASENAME=-DBASENAME + + CC=gcc + TARSOURCE = $(PROJECT)-$(VERSION).src.tgz +@@ -11,8 +11,8 @@ + HTMLFILES = $(PROJECT).html + TMPFILES = $(DYNAMICBIN) $(TARSOURCE) $(HTMLFILES) + +-CFLAGS = -Wall -O2 $(BASENAME) +-LOADLIBES = -lcurses #-lccmalloc -ldl ++CFLAGS = -Wall -O2 $(BASENAME) -I${PREFIX}/include -L${PREFIX}/lib -lncurses ++LOADLIBES = -lncurses #-lccmalloc -ldl + + .PHONY: clean tgz docs + diff --git a/editors/hexedit/patches/patch-ab b/editors/hexedit/patches/patch-ab new file mode 100644 index 00000000000..7d8df7c0fe9 --- /dev/null +++ b/editors/hexedit/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 1998/08/24 11:58:05 frueauf Exp $ + +--- hexedit.c-orig Fri Aug 7 18:20:04 1998 ++++ hexedit.c Mon Aug 24 12:53:26 1998 +@@ -21,7 +21,7 @@ + #include <sys/stat.h> + #include <fcntl.h> + #include <unistd.h> +-#include <curses.h> ++#include <ncurses.h> + #include <ctype.h> + #include <signal.h> + #include <sys/wait.h> |