summaryrefslogtreecommitdiff
path: root/archivers/torrentzip/patches
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/torrentzip/patches')
-rw-r--r--archivers/torrentzip/patches/patch-aa13
-rw-r--r--archivers/torrentzip/patches/patch-configure.ac15
-rw-r--r--archivers/torrentzip/patches/patch-src_platform.c22
3 files changed, 0 insertions, 50 deletions
diff --git a/archivers/torrentzip/patches/patch-aa b/archivers/torrentzip/patches/patch-aa
deleted file mode 100644
index e49f3030a1a..00000000000
--- a/archivers/torrentzip/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2008/05/06 08:35:15 dillo Exp $
-
---- src/trrntzip.c.orig 2005-05-02 15:38:40.000000000 +0200
-+++ src/trrntzip.c
-@@ -782,7 +782,7 @@ RecursiveMigrate (const char *pszPath, W
-
- if (strstr (szTmpBuf, ".zip\0") && !(istat.st_mode & S_IWUSR))
- {
-- chmod (direntp->d_name, S_IWUSR);
-+ chmod (direntp->d_name, S_IRUSR|S_IWUSR);
- mig.cEncounteredZips++;
-
- if (!mig.fProcessLog)
diff --git a/archivers/torrentzip/patches/patch-configure.ac b/archivers/torrentzip/patches/patch-configure.ac
deleted file mode 100644
index 6fe6a47afd4..00000000000
--- a/archivers/torrentzip/patches/patch-configure.ac
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-configure.ac,v 1.1 2013/01/26 23:00:33 wiz Exp $
-
-automake-1.13 compat.
-
---- configure.ac.orig 2005-04-05 16:12:49.000000000 +0000
-+++ configure.ac
-@@ -1,7 +1,7 @@
- AC_INIT([TorrentZip], [0.0], [StatMan, shindakun, Ultrasubmarine, r3nh03k <http://trrntzip.sf.net>], [trrntzip])
-
- AM_INIT_AUTOMAKE
--AM_CONFIG_HEADER(config.h)
-+AC_CONFIG_HEADERS(config.h)
- AM_MAINTAINER_MODE
-
- AC_PROG_CC
diff --git a/archivers/torrentzip/patches/patch-src_platform.c b/archivers/torrentzip/patches/patch-src_platform.c
deleted file mode 100644
index 3fd417c6d19..00000000000
--- a/archivers/torrentzip/patches/patch-src_platform.c
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-src_platform.c,v 1.1 2014/01/09 15:40:55 jperkin Exp $
-
-cfmakeraw compatability for SunOS.
-
---- src/platform.c.orig 2005-04-17 08:36:15.000000000 +0000
-+++ src/platform.c
-@@ -45,7 +45,15 @@ getch (void)
-
- tcgetattr (1, &t);
- t2 = t;
-+#ifdef __sun
-+ t2.c_iflag &= ~(IMAXBEL|IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
-+ t2.c_oflag &= ~OPOST;
-+ t2.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
-+ t2.c_cflag &= ~(CSIZE|PARENB);
-+ t2.c_cflag |= CS8;
-+#else
- cfmakeraw (&t2);
-+#endif
- tcsetattr (1, TCSANOW, &t2);
- fread (&c, 1, 1, stdin);
- tcsetattr (1, TCSANOW, &t);