diff options
Diffstat (limited to 'sysutils/task/files')
-rw-r--r-- | sysutils/task/files/patch-aa | 11 | ||||
-rw-r--r-- | sysutils/task/files/patch-ab | 11 | ||||
-rw-r--r-- | sysutils/task/files/patch-ac | 15 | ||||
-rw-r--r-- | sysutils/task/files/patch-ad | 15 | ||||
-rw-r--r-- | sysutils/task/files/patch-ae | 17 | ||||
-rw-r--r-- | sysutils/task/files/patch-af | 13 | ||||
-rw-r--r-- | sysutils/task/files/patch-ag | 9 |
7 files changed, 91 insertions, 0 deletions
diff --git a/sysutils/task/files/patch-aa b/sysutils/task/files/patch-aa new file mode 100644 index 000000000000..6f291f9ba5b1 --- /dev/null +++ b/sysutils/task/files/patch-aa @@ -0,0 +1,11 @@ +--- ./src/makedefs.orig Sun Oct 6 23:53:33 2002 ++++ ./src/makedefs Sun Oct 6 23:53:45 2002 +@@ -8,6 +8,8 @@ + ;; + FreeBSD.4*) DEFS="-DFREEBSD4" + ;; ++ FreeBSD.5*) DEFS="-DFREEBSD5" ++ ;; + OpenBSD.[23]*) DEFS="-DOPENBSD2" + ;; + OpenBSD.3*) DEFS="-DOPENBSD3" diff --git a/sysutils/task/files/patch-ab b/sysutils/task/files/patch-ab new file mode 100644 index 000000000000..86345ec50965 --- /dev/null +++ b/sysutils/task/files/patch-ab @@ -0,0 +1,11 @@ +--- ./src/fstools/fs_tools.h.orig Sun Oct 6 23:54:26 2002 ++++ ./src/fstools/fs_tools.h Sun Oct 6 23:56:05 2002 +@@ -91,7 +91,7 @@ + /* + * FreeBSD can handle filesystems > 2GB. + */ +-#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) ++#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) || defined(FREEBSD5) + #define SUPPORTED + #define LSEEK lseek + #define OFF_T off_t diff --git a/sysutils/task/files/patch-ac b/sysutils/task/files/patch-ac new file mode 100644 index 000000000000..82f1a5074cc6 --- /dev/null +++ b/sysutils/task/files/patch-ac @@ -0,0 +1,15 @@ +--- ./src/file/Makefile.orig Mon Oct 7 00:01:09 2002 ++++ ./src/file/Makefile Mon Oct 7 00:01:51 2002 +@@ -22,10 +22,9 @@ + # 4. This notice may not be removed or altered. + + SHELL = /bin/sh +-CC = gcc +-OPT = -O ++CC ?= gcc + DEBUG = -g +-CFLAGS = $(OPT) $(DEBUG) $(DEFS) $(DEFS_LCL) ++CFLAGS += $(DEBUG) $(DEFS) $(DEFS_LCL) + + # If TASK is used with Autopsy on a CD that can be used for live + # analysis, uncomment the line below and set the TASK directory diff --git a/sysutils/task/files/patch-ad b/sysutils/task/files/patch-ad new file mode 100644 index 000000000000..99e7f7272dff --- /dev/null +++ b/sysutils/task/files/patch-ad @@ -0,0 +1,15 @@ +--- ./src/fstools/Makefile.orig Mon Oct 7 00:01:58 2002 ++++ ./src/fstools/Makefile Mon Oct 7 00:02:12 2002 +@@ -1,9 +1,9 @@ + SHELL = /bin/sh +-CC = gcc +-OPT = -O -Wall ++CC ?= gcc ++OPT = -Wall + DEBUG = -ggdb + INCL = -I../misc +-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG) ++CFLAGS += $(DEFS) $(INCL) $(OPT) $(DEBUG) + LIBOBJ = fs_buf.o fs_inode.o fs_io.o fs_open.o \ + fs_dent.o fs_types.o fs_data.o mylseek.o get.o \ + ffs.o ffs_dent.o ext2fs.o ext2fs_dent.o \ diff --git a/sysutils/task/files/patch-ae b/sysutils/task/files/patch-ae new file mode 100644 index 000000000000..a15a295305f7 --- /dev/null +++ b/sysutils/task/files/patch-ae @@ -0,0 +1,17 @@ +--- ./src/hash/Makefile.orig Mon Oct 7 00:02:28 2002 ++++ ./src/hash/Makefile Mon Oct 7 00:02:41 2002 +@@ -1,12 +1,11 @@ + SHELL = /bin/sh +-CC = gcc +-OPT = -O ++CC ?= gcc + DEBUG = -g + BIN = ../../bin + MAN = ../../man + PROGS = $(BIN)/md5 $(BIN)/sha1 + MANPAGES= $(MAN)/man1/md5.1 +-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. $(XFLAGS) ++CFLAGS += $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. $(XFLAGS) + + defs: + @sh ../makedefs diff --git a/sysutils/task/files/patch-af b/sysutils/task/files/patch-af new file mode 100644 index 000000000000..260a173e5c8f --- /dev/null +++ b/sysutils/task/files/patch-af @@ -0,0 +1,13 @@ +--- ./src/misc/Makefile.orig Mon Oct 7 00:02:50 2002 ++++ ./src/misc/Makefile Mon Oct 7 00:03:00 2002 +@@ -1,8 +1,7 @@ + SHELL = /bin/sh +-CC = gcc +-OPT = -O ++CC ?= gcc + DEBUG = -g +-CFLAGS = $(DEFS) $(OPT) $(DEBUG) ++CFLAGS += $(DEFS) $(OPT) $(DEBUG) + LIBOBJ = mymalloc.o error.o strerror.o split_at.o + LIB = aux_lib.a + BIN_DIR = diff --git a/sysutils/task/files/patch-ag b/sysutils/task/files/patch-ag new file mode 100644 index 000000000000..b2e6f84a8fea --- /dev/null +++ b/sysutils/task/files/patch-ag @@ -0,0 +1,9 @@ +--- Makefile.orig Mon Oct 7 00:05:18 2002 ++++ Makefile Mon Oct 7 00:05:22 2002 +@@ -1,5 +1,5 @@ + SHELL = /bin/sh +-CC = gcc ++CC ?= gcc + DIRS = bin etc + + all: $(DIRS) compile |