On Sat, Oct 21, 2023 at 02:28:29PM +0200, Caspar Schutijser wrote: > Hi all, > > Here is a diff for a patch that got lost with an earlier > update, similar to what espie@ fixed a couple of days ago for > libmp3lame. As an example, with this, I can open a MKV file again > successfully. > > Comments or OKs?
OK > > Caspar > > > Index: Makefile > =================================================================== > RCS file: /cvs/ports/audio/audacity/Makefile,v > retrieving revision 1.93 > diff -u -p -r1.93 Makefile > --- Makefile 18 Oct 2023 15:51:05 -0000 1.93 > +++ Makefile 21 Oct 2023 12:22:53 -0000 > @@ -6,7 +6,7 @@ GH_ACCOUNT= audacity > GH_PROJECT= audacity > GH_TAGNAME= Audacity-3.3.3 > DISTNAME= ${GH_TAGNAME:L} > -REVISION= 1 > +REVISION= 2 > > CATEGORIES= audio > > Index: patches/patch-libraries_lib-ffmpeg-support_FFmpegFunctions_cpp > =================================================================== > RCS file: patches/patch-libraries_lib-ffmpeg-support_FFmpegFunctions_cpp > diff -N patches/patch-libraries_lib-ffmpeg-support_FFmpegFunctions_cpp > --- /dev/null 1 Jan 1970 00:00:00 -0000 > +++ patches/patch-libraries_lib-ffmpeg-support_FFmpegFunctions_cpp 21 Oct > 2023 12:22:53 -0000 > @@ -0,0 +1,12 @@ > +Index: libraries/lib-ffmpeg-support/FFmpegFunctions.cpp > +--- libraries/lib-ffmpeg-support/FFmpegFunctions.cpp.orig > ++++ libraries/lib-ffmpeg-support/FFmpegFunctions.cpp > +@@ -132,7 +132,7 @@ std::vector<wxString> BuildAVFormatPaths(int version) > + wxString::Format("libavformat.%d.dylib", version), > + wxString::Format("ffmpeg.%d.64bit.dylib", version), > + #else > +- wxString::Format("libavformat.so.%d", version) > ++ wxString::Format("libavformat.so"), > + #endif > + }; > + } > -- Antoine