aboutsummaryrefslogtreecommitdiff
path: root/multimedia/mplex/files/patch-ae
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-05-29 23:54:42 +0000
committerSteve Price <steve@FreeBSD.org>2000-05-29 23:54:42 +0000
commit1bdc5ad34514a9a2992b6ee79fc82f1737265bf1 (patch)
treecd29a3dc4589b5011a2cbb64ca67c7b16c1a0ff4 /multimedia/mplex/files/patch-ae
parent2b2f39c6e886a3bc2d4f7db07ad779876bfc1b22 (diff)
downloadports-1bdc5ad34514a9a2992b6ee79fc82f1737265bf1.tar.gz
ports-1bdc5ad34514a9a2992b6ee79fc82f1737265bf1.zip
- Fix MASTER_SITES
- Support CC/CFLAGS properly PR: 16674 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Notes
Notes: svn path=/head/; revision=28962
Diffstat (limited to 'multimedia/mplex/files/patch-ae')
-rw-r--r--multimedia/mplex/files/patch-ae20
1 files changed, 20 insertions, 0 deletions
diff --git a/multimedia/mplex/files/patch-ae b/multimedia/mplex/files/patch-ae
new file mode 100644
index 000000000000..41149fd1580f
--- /dev/null
+++ b/multimedia/mplex/files/patch-ae
@@ -0,0 +1,20 @@
+--- interact.c.orig Wed May 31 20:18:33 1995
++++ interact.c Fri Feb 11 10:04:07 2000
+@@ -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);