aboutsummaryrefslogtreecommitdiff
path: root/archivers/zoo
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-07-26 16:51:15 +0000
commit9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch)
tree9b071a8105704e992946dcd6b801e9fcb7635142 /archivers/zoo
parent5a20e7990eb544509174d617d359bf0d4ac64737 (diff)
Notes
Diffstat (limited to 'archivers/zoo')
-rw-r--r--archivers/zoo/files/patch-ar.h6
-rw-r--r--archivers/zoo/files/patch-bsd.c10
-rw-r--r--archivers/zoo/files/patch-makefile8
-rw-r--r--archivers/zoo/files/patch-misc.c8
-rw-r--r--archivers/zoo/files/patch-misc2.c6
-rw-r--r--archivers/zoo/files/patch-nixtime.i6
-rw-r--r--archivers/zoo/files/patch-options.h8
-rw-r--r--archivers/zoo/files/patch-zooadd2.c6
-rw-r--r--archivers/zoo/files/patch-zooext.c8
-rw-r--r--archivers/zoo/files/patch-zoofns.h6
-rw-r--r--archivers/zoo/files/patch-zoolist.c6
11 files changed, 39 insertions, 39 deletions
diff --git a/archivers/zoo/files/patch-ar.h b/archivers/zoo/files/patch-ar.h
index fbc3ec644a2d..0acf929a0b65 100644
--- a/archivers/zoo/files/patch-ar.h
+++ b/archivers/zoo/files/patch-ar.h
@@ -1,6 +1,6 @@
---- ./ar.h.orig 1993-05-01 06:04:22.000000000 +0200
-+++ ./ar.h 2011-12-22 14:00:55.000000000 +0100
-@@ -15,10 +15,12 @@
+--- ar.h.orig 1993-05-01 04:04:22 UTC
++++ ar.h
+@@ -15,10 +15,12 @@ Adapted from "ar" archiver written by Ha
/* uchar should be 8 bits or more */
/* typedef unsigned char uchar; -- already in zoo.h */
diff --git a/archivers/zoo/files/patch-bsd.c b/archivers/zoo/files/patch-bsd.c
index bcb7712b7f3f..bc76a076e8a6 100644
--- a/archivers/zoo/files/patch-bsd.c
+++ b/archivers/zoo/files/patch-bsd.c
@@ -1,6 +1,6 @@
---- ./bsd.c.orig 1993-05-01 06:21:53.000000000 +0200
-+++ ./bsd.c 2011-12-22 14:00:55.000000000 +0100
-@@ -69,8 +69,12 @@
+--- bsd.c.orig 1993-05-01 04:21:53 UTC
++++ bsd.c
+@@ -69,8 +69,12 @@ ZOOFILE f;
}
/* Function gettz() returns the offset from GMT in seconds */
@@ -14,7 +14,7 @@
#define SEC_IN_DAY (24L * 60L * 60L)
#define INV_VALUE (SEC_IN_DAY + 1L)
static long retval = INV_VALUE; /* cache, init to impossible value */
-@@ -95,6 +99,7 @@
+@@ -95,6 +99,7 @@ long gettz()
retval = -tm->tm_gmtoff;
#endif
return retval;
@@ -22,7 +22,7 @@
}
/* Standard UNIX-compatible time routines */
-@@ -103,15 +108,19 @@
+@@ -103,15 +108,19 @@ long gettz()
/* Standard UNIX-specific file attribute routines */
#include "nixmode.i"
diff --git a/archivers/zoo/files/patch-makefile b/archivers/zoo/files/patch-makefile
index 18ec3e7caabd..50ddafa118df 100644
--- a/archivers/zoo/files/patch-makefile
+++ b/archivers/zoo/files/patch-makefile
@@ -1,5 +1,5 @@
---- ./makefile.orig 1991-07-16 17:52:08.000000000 +0200
-+++ ./makefile 2011-12-22 14:00:55.000000000 +0100
+--- makefile.orig 1991-07-16 15:52:08 UTC
++++ makefile
@@ -18,13 +18,13 @@
MAKE = make # needed for some systems e.g. older BSD
@@ -18,7 +18,7 @@
#List of all object files created for Zoo
ZOOOBJS = addbfcrc.o addfname.o basename.o comment.o crcdefs.o \
-@@ -67,7 +67,7 @@
+@@ -67,7 +67,7 @@ help :
@echo "lint_turboc: Run lint under **IX for checking Turbo C/MSDOS code"
# install alpha zoo as "tzoo"
@@ -27,7 +27,7 @@
mv zoo $(DESTDIR)/tzoo
# install beta zoo as "bzoo"
-@@ -75,8 +75,9 @@
+@@ -75,8 +75,9 @@ inst_beta:
mv zoo $(DESTDIR)/bzoo
# install production zoo as "zoo"
diff --git a/archivers/zoo/files/patch-misc.c b/archivers/zoo/files/patch-misc.c
index a613087b3a10..65d744f73632 100644
--- a/archivers/zoo/files/patch-misc.c
+++ b/archivers/zoo/files/patch-misc.c
@@ -1,6 +1,6 @@
---- ./misc.c.orig 1991-07-16 17:52:54.000000000 +0200
-+++ ./misc.c 2011-12-22 14:02:23.000000000 +0100
-@@ -135,11 +135,16 @@
+--- misc.c.orig 1991-07-16 15:52:54 UTC
++++ misc.c
+@@ -135,11 +135,16 @@ if available, else the short filename is
char *fullpath (direntry)
struct direntry *direntry;
{
@@ -18,7 +18,7 @@
return (result);
}
-@@ -172,7 +177,11 @@
+@@ -172,7 +177,11 @@ int preserve;
frd_zooh (header, zoo_file);
diff --git a/archivers/zoo/files/patch-misc2.c b/archivers/zoo/files/patch-misc2.c
index de3595ab5713..b4be82fc4f96 100644
--- a/archivers/zoo/files/patch-misc2.c
+++ b/archivers/zoo/files/patch-misc2.c
@@ -1,6 +1,6 @@
---- ./misc2.c.orig 1991-07-16 17:53:02.000000000 +0200
-+++ ./misc2.c 2011-12-22 14:00:55.000000000 +0100
-@@ -314,10 +314,12 @@
+--- misc2.c.orig 1991-07-16 15:53:02 UTC
++++ misc2.c
+@@ -314,10 +314,12 @@ struct direntry *direntry;
{
long diff_tz;
long longtime;
diff --git a/archivers/zoo/files/patch-nixtime.i b/archivers/zoo/files/patch-nixtime.i
index d536387bd063..2c1d2c1e1859 100644
--- a/archivers/zoo/files/patch-nixtime.i
+++ b/archivers/zoo/files/patch-nixtime.i
@@ -1,6 +1,6 @@
---- ./nixtime.i.orig 1991-07-16 17:53:46.000000000 +0200
-+++ ./nixtime.i 2011-12-22 14:00:55.000000000 +0100
-@@ -52,7 +52,8 @@
+--- nixtime.i.orig 1991-07-16 15:53:46 UTC
++++ nixtime.i
+@@ -52,7 +52,8 @@ unsigned int date, time;
long mstonix();
long gettz();
long utimbuf[2];
diff --git a/archivers/zoo/files/patch-options.h b/archivers/zoo/files/patch-options.h
index 3749d82708d3..5dad8f4b2f74 100644
--- a/archivers/zoo/files/patch-options.h
+++ b/archivers/zoo/files/patch-options.h
@@ -1,6 +1,6 @@
---- ./options.h.orig 1993-05-01 06:27:59.000000000 +0200
-+++ ./options.h 2011-12-22 14:00:55.000000000 +0100
-@@ -96,7 +96,6 @@
+--- options.h.orig 1993-05-01 04:27:59 UTC
++++ options.h
+@@ -96,7 +96,6 @@ For documentation about this file, see o
#define NIXTIME
#define NIXFNAME
#define NEEDCTYP
@@ -8,7 +8,7 @@
#define REN_STDC
#define SETBUF
#define GETTZ
-@@ -110,6 +109,7 @@
+@@ -110,6 +109,7 @@ For documentation about this file, see o
#define ANSI_PROTO
#define VOIDPTR void *
#else
diff --git a/archivers/zoo/files/patch-zooadd2.c b/archivers/zoo/files/patch-zooadd2.c
index 247acb84de6c..be9cc6d6cff1 100644
--- a/archivers/zoo/files/patch-zooadd2.c
+++ b/archivers/zoo/files/patch-zooadd2.c
@@ -1,6 +1,6 @@
---- ./zooadd2.c.orig 1991-07-20 01:38:10.000000000 +0200
-+++ ./zooadd2.c 2011-12-22 14:00:55.000000000 +0100
-@@ -258,12 +258,15 @@
+--- zooadd2.c.orig 1991-07-19 23:38:10 UTC
++++ zooadd2.c
+@@ -258,12 +258,15 @@ void newdir (direntry)
register struct direntry *direntry;
{
#ifdef GETTZ
diff --git a/archivers/zoo/files/patch-zooext.c b/archivers/zoo/files/patch-zooext.c
index 1553286201f9..a8c85f2b682e 100644
--- a/archivers/zoo/files/patch-zooext.c
+++ b/archivers/zoo/files/patch-zooext.c
@@ -1,6 +1,6 @@
---- ./zooext.c.orig 1993-05-01 05:58:50.000000000 +0200
-+++ ./zooext.c 2011-12-22 14:03:37.000000000 +0100
-@@ -163,7 +163,11 @@
+--- zooext.c.orig 1993-05-01 03:58:50 UTC
++++ zooext.c
+@@ -163,7 +163,11 @@ if (fiz_ofs != 0L) { /* i
} else {
/* read header */
frd_zooh (&zoo_header, zoo_file);
@@ -12,7 +12,7 @@
prterror ('w', failed_consistency);
bad_header++;
exit_status = 1;
-@@ -184,7 +188,8 @@
+@@ -184,7 +188,8 @@ if (null_device) {
this_file = STDOUT; /* standard output */
while (1) {
diff --git a/archivers/zoo/files/patch-zoofns.h b/archivers/zoo/files/patch-zoofns.h
index c51cfcb3dbed..693da9df2cf4 100644
--- a/archivers/zoo/files/patch-zoofns.h
+++ b/archivers/zoo/files/patch-zoofns.h
@@ -1,6 +1,6 @@
---- ./zoofns.h.orig 1993-05-01 05:57:35.000000000 +0200
-+++ ./zoofns.h 2011-12-22 14:00:55.000000000 +0100
-@@ -94,7 +94,11 @@
+--- zoofns.h.orig 1993-05-01 03:57:35 UTC
++++ zoofns.h
+@@ -94,7 +94,11 @@ void exit PARMS ((int));
void fixslash PARMS ((char *));
void makelist PARMS ((int, char *[], char *[], int, char *, char *, char *, int *));
void memerr PARMS ((unsigned int));
diff --git a/archivers/zoo/files/patch-zoolist.c b/archivers/zoo/files/patch-zoolist.c
index 339b3bdb14c6..b61d9938297f 100644
--- a/archivers/zoo/files/patch-zoolist.c
+++ b/archivers/zoo/files/patch-zoolist.c
@@ -1,6 +1,6 @@
---- ./zoolist.c.orig 1991-07-20 00:57:27.000000000 +0200
-+++ ./zoolist.c 2011-12-22 14:00:55.000000000 +0100
-@@ -539,10 +539,12 @@
+--- zoolist.c.orig 1991-07-19 22:57:27 UTC
++++ zoolist.c
+@@ -539,10 +539,12 @@ int file_tz;
{
long gettz();
int diff_tz; /* timezone difference */