diff options
Diffstat (limited to 'archivers/mtf/files')
-rw-r--r-- | archivers/mtf/files/patch-Makefile | 11 | ||||
-rw-r--r-- | archivers/mtf/files/patch-mtfread.c | 33 |
2 files changed, 44 insertions, 0 deletions
diff --git a/archivers/mtf/files/patch-Makefile b/archivers/mtf/files/patch-Makefile new file mode 100644 index 000000000000..acffeaba4533 --- /dev/null +++ b/archivers/mtf/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Wed Sep 13 23:06:02 2000 ++++ Makefile Wed Jun 26 14:28:48 2002 +@@ -2,7 +2,7 @@ + + #ARCH=-mpentiumpro -march=pentiumpro + +-CFLAGS=-Wall -O2 $(DEFINES) $(ARCH) ++CFLAGS+=-Wall + OFILES=mtf.o mtfread.o mtfutil.o + + .SUFFIXES: .c .o diff --git a/archivers/mtf/files/patch-mtfread.c b/archivers/mtf/files/patch-mtfread.c new file mode 100644 index 000000000000..b31776f69f46 --- /dev/null +++ b/archivers/mtf/files/patch-mtfread.c @@ -0,0 +1,33 @@ +--- mtfread.c.orig Wed Sep 13 23:14:33 2000 ++++ mtfread.c Wed Jun 26 14:28:48 2002 +@@ -42,7 +42,11 @@ + #include <limits.h> + #include <sys/stat.h> + #include <sys/fcntl.h> ++#if defined(BSD) ++#include <sys/mount.h> ++#else + #include <sys/vfs.h> ++#endif + #include <utime.h> + #include <unistd.h> + #include <time.h> +@@ -363,7 +367,7 @@ + { + stream = (MTF_STREAM_HDR*) ((char*) tape + dbHdr->off); + result = skipToNextBlock(); +- if (result != 1) ++ if (result != 0) /* skipToNextBlock returns 0 upon success -1 otherwise */ + { + fprintf(stderr, "Error traversing to end of descriptor block!\n"); + return(-1); +@@ -671,7 +675,8 @@ + INT32 result; + char *ptr, *ptr2, filePath[MAXPATHLEN + 1], fullPath[MAXPATHLEN + 1]; + char tmpPath[MAXPATHLEN + 1]; +- int i, output; ++ int i; ++ int output=-1; /* Initialized to avoid gcc warning */ + struct tm tbuf; + struct utimbuf utbuf; + UINT32 threshold; |