aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/win32-codecs/files/patch-aa
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-02-13 03:05:49 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-02-13 03:05:49 +0000
commit105055cfcc2d67c0f18ea2be2bcf52662513c287 (patch)
treee58dc2c7d1b7ad53ca5139db4486cfab6a8c264a /multimedia/win32-codecs/files/patch-aa
parent7041a426cb8868a1b9931db9e01570e70186ee17 (diff)
Initial revision of this port. It will now have a history of its own. :)
Remove all non-codec related information. Also, add audio as a secondary category since the codecs cover video as well as audio only types. PR: 25035 Reviewed by: sobomax Approved by: maintainer
Diffstat (limited to 'multimedia/win32-codecs/files/patch-aa')
-rw-r--r--multimedia/win32-codecs/files/patch-aa14
1 files changed, 0 insertions, 14 deletions
diff --git a/multimedia/win32-codecs/files/patch-aa b/multimedia/win32-codecs/files/patch-aa
deleted file mode 100644
index ededdb39d3f5..000000000000
--- a/multimedia/win32-codecs/files/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
---- lib/avifile/AviWrite.cpp.orig Fri Oct 6 12:58:16 2000
-+++ lib/avifile/AviWrite.cpp Fri Oct 6 12:59:14 2000
-@@ -23,7 +23,11 @@
- try
- {
- m_status=0;
-+#ifdef O_LARGEFILE
- m_fd=new FileBuffer(name, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, mask);
-+#else
-+ m_fd=new FileBuffer(name, O_WRONLY | O_CREAT | O_TRUNC, mask);
-+#endif
- const int junk_size=0x800;
- char* junk=new char[junk_size];
- memset(junk, 0, junk_size);