aboutsummaryrefslogtreecommitdiff
path: root/graphics/mplex/files/patch-ae
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2003-04-04 06:00:13 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2003-04-04 06:00:13 +0000
commitc10bcef6d35d2163017c48650d8c5b74b2786201 (patch)
tree3fa81264279ab723edc09ed6806a7c8d27b194c1 /graphics/mplex/files/patch-ae
parent328b6db7856f09b9301c8c249b9ff065487c6879 (diff)
Finish repo copy move from graphics category to newly create
multimedia one for the following ports: avidemux avinfo camserv dtv dumpmpeg enjoympeg fxtv gopchop gxanim libdvbpsi libfame libquicktime mmsclient mpeg mpeg2codec mpeg2play mpeg_encode mpeg_play mpeg_stat mpegedit mpgtx mplex mtv netshow ppm2fli smpeg smpeg-xmms splitmpg tkxanim totem transcode vlc xanim xawtv xine_d4d_plugin xine_d5d_plugin xmovie xmps xtheater Repo copied by: cvs (joe) Approved by: portmgr (self & no objections)
Notes
Notes: svn path=/head/; revision=78091
Diffstat (limited to 'graphics/mplex/files/patch-ae')
-rw-r--r--graphics/mplex/files/patch-ae20
1 files changed, 0 insertions, 20 deletions
diff --git a/graphics/mplex/files/patch-ae b/graphics/mplex/files/patch-ae
deleted file mode 100644
index 41149fd1580f..000000000000
--- a/graphics/mplex/files/patch-ae
+++ /dev/null
@@ -1,20 +0,0 @@
---- 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);