Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv18513
Modified Files:
audacity-freeworld.spec
Added Files:
audacity-1.3.12-ffmpeg-fix-ufile_write.patch
Log Message:
fix build failure compiling ffmpeg.cpp
audacity-1.3.12-ffmpeg-fix-ufile_write.patch:
FFmpeg.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE audacity-1.3.12-ffmpeg-fix-ufile_write.patch ---
--- audacity-src-1.3.12-beta.orig/src/FFmpeg.cpp 2010-03-30 22:28:54.000000000 +1100
+++ audacity-src-1.3.12-beta/src/FFmpeg.cpp 2010-11-10 22:06:29.000000000 +1100
@@ -204,7 +204,7 @@
return ret;
}
-static int ufile_write(URLContext *h, unsigned char *buf, int size)
+static int ufile_write(URLContext *h, const unsigned char *buf, int size)
{
return (int) ((wxFile *) h->priv_data)->Write(buf, size);
}
Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-14/audacity-freeworld.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- audacity-freeworld.spec 9 Nov 2010 13:09:19 -0000 1.18
+++ audacity-freeworld.spec 10 Nov 2010 11:52:16 -0000 1.19
@@ -1,7 +1,7 @@
Name: audacity-freeworld
Version: 1.3.12
-Release: 0.10.beta%{?dist}
+Release: 0.11.beta%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -26,6 +26,7 @@
Patch4: audacity-1.3.12-ffmpeg-0.6-apichange-av_match_ext.patch
Patch7: audacity-1.3.12-fix-minimum-playspeed.patch
Patch8: audacity-1.3.12-portmixer-autoreconf.patch
+Patch9: audacity-1.3.12-ffmpeg-fix-ufile_write.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -85,6 +86,8 @@
%patch7 -p1 -b .fix-minimum-playspeed
%patch8 -p1 -b .portmixer-autoreconf-from-svn
+%patch9 -p1 -b .ffmpeg-from-svn
+
# Substitute occurences of "libmp3lame.so" with "libmp3lame.so.0".
for i in locale/*.po src/export/ExportMP3.cpp
@@ -161,6 +164,9 @@
%changelog
+* Wed Nov 10 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.11.beta
+- fix build failure compiling ffmpeg.cpp
+
* Wed Nov 10 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.10.beta
- fix build failure in portmixer due to "Missing support in pa_mac_core.h"
Applied svn trunk portmixer configure changes.