summaryrefslogtreecommitdiff
path: root/archivers/torrentzip/patches/patch-src_platform.c
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2020-10-05 15:21:07 +0000
committerwiz <wiz@pkgsrc.org>2020-10-05 15:21:07 +0000
commit959b612d4bc0817e358db65c7b18330132e19aed (patch)
treeaff292c39f53ad34e7a499fc7816a751308ba1c3 /archivers/torrentzip/patches/patch-src_platform.c
parent567523c06b58a9eb4e9ac43665c179509a4513c0 (diff)
downloadpkgsrc-959b612d4bc0817e358db65c7b18330132e19aed.tar.gz
torrentzip: update to 1.0.6.
Switch to mono version from new upstream. Improved zip64 support.
Diffstat (limited to 'archivers/torrentzip/patches/patch-src_platform.c')
-rw-r--r--archivers/torrentzip/patches/patch-src_platform.c22
1 files changed, 0 insertions, 22 deletions
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);