patches/mkvtoolnix-06-r_flac.diff
author viskov
Wed, 13 Apr 2011 18:41:26 +0000
changeset 3413 a6365015f5e1
permissions -rw-r--r--
SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs SFEmpd.spec: bump to 0.16.2; add --without-encumbered option base-specs/icu.spec: update to 4.6.1 SFEicu.spec: package pkgconfig files SFEdjvulibre.spec: bump to 3.5.24 SFEdjview.spec: update to 4.7 SFEpkgbuild.spec: add patches from oi-cbe, rearranging patches SFElibao.spec: bump to 1.1.0 SFEmkvtoolnix.spec: add patch to make build on oi_147 SFEqt47.spec: use CXXFLAGS used by kde-solaris SFEsakura.spec: use SFEcmake SFEimagemagick.spec: update to 6.6.9-4 SFEscribus.spec: update to 1.4.0.rc3; fix version name SFEalsa-plugins.spec: add cc_is_gcc SFEpostgres-90.spec: use name "SFEeditline" for dependency SFElyx.spec: fix version name (IPS forbids letters in version names) SFEtmux.spec: use SFElibevent2 instead of SFElibevent SFEkchmviewer.spec: use only 2 cpus: using 16 cpus breaks build SFElensfun.spec: use SFEdoxygen SFEunbound.spec: delete reference to obsolete SUNWspro SFEemacs.spec, SFEgmpc.spec, SFEcmake.spec, SFEgnochm.spec, SFEjasper.spec: add missing build dependencies SFEgit.spec, alsa-lib.spec, alsa-plugins.spec, SFEc-icap.spec, SFEc-icap-modules.spec: do not specify specific pathname for gcc SFEqt47-gpp.spec, SFEorc.spec: require gtk2 instead of gtk1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3413
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     1
--- mkvtoolnix-4.6.0/src/input/r_flac.cpp.orig	2011-03-09 22:28:47.000000000 +0000
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     2
+++ mkvtoolnix-4.6.0/src/input/r_flac.cpp	2011-04-13 02:16:53.819769444 +0100
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     3
@@ -13,6 +13,10 @@
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     4
 
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     5
 #include "common/common_pch.h"
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     6
 
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     7
+#include <iterator>
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     8
+#include <vector>
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
     9
+using namespace std;
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
    10
+
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
    11
 #include <ogg/ogg.h>
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
    12
 #include <vorbis/codec.h>
a6365015f5e1 SFEboost-gpp.spec: use new g++ libs pathname; build multithreaded libs
viskov
parents:
diff changeset
    13