summaryrefslogtreecommitdiff
path: root/graphics/mplex/patches/patch-ae
diff options
context:
space:
mode:
authorwiz <wiz>2002-11-23 22:03:19 +0000
committerwiz <wiz>2002-11-23 22:03:19 +0000
commitc5f361de5a52a92471462437434790e111ac4753 (patch)
tree0370b1c829d30c6f50f4a44938ed4e27f3e64c27 /graphics/mplex/patches/patch-ae
parentbec65cec1663035a1a3ccb94b7be9f97eb20cd9a (diff)
downloadpkgsrc-c5f361de5a52a92471462437434790e111ac4753.tar.gz
Update to 1.6.0 (from the mjpegtools distribution).
Handles multiplexed streams and has (S)VCD support. Update from Ben Collver in PR 19098.
Diffstat (limited to 'graphics/mplex/patches/patch-ae')
-rw-r--r--graphics/mplex/patches/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/graphics/mplex/patches/patch-ae b/graphics/mplex/patches/patch-ae
deleted file mode 100644
index 7c6bee094f7..00000000000
--- a/graphics/mplex/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2001/09/23 20:37:35 tron Exp $
-
---- interact.c.orig Wed May 31 04:18:33 1995
-+++ interact.c
-@@ -67,7 +67,7 @@
- char input[20];
-
- printf ("\nContinue processing (y/n) : ");
-- do gets (input);
-+ do fgets (input, sizeof(input), stdin);
- while (input[0]!='N'&&input[0]!='n'&&input[0]!='y'&&input[0]!='Y');
-
- if (input[0]=='N' || input[0]=='n')
-@@ -92,7 +92,7 @@
- char input[20];
-
- printf ("\nVery verbose mode (y/n) : ");
-- do gets (input);
-+ do fgets (input, sizeof(input), stdin);
- while (input[0]!='N'&&input[0]!='n'&&input[0]!='y'&&input[0]!='Y');
-
- if (input[0]=='N' || input[0]=='n') return (FALSE); else return (TRUE);