From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 X-Virus-Scanned: amavisd-new at office.etersoft.ru From: "Ivan A. Melnikov" To: ALT Linux Team development discussions , crux@altlinux.org Date: Mon, 13 Oct 2008 16:42:53 +0400 User-Agent: KMail/1.9.10 References: <20081012212622.GA11816@granary.armor.altlinux.org> <3b8491740810130248l70468af5ja6f139165cb7fab0@mail.gmail.com> <200810131525.47750.iv@altlinux.org> In-Reply-To: <200810131525.47750.iv@altlinux.org> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_NJ08I6/n12c90j1" Message-Id: <200810131642.53389.iv@altlinux.org> Subject: Re: [devel] [cyber] I: Sisyphus-20081013 REBUILD i586 status X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.10b3 Precedence: list Reply-To: ALT Linux Team development discussions List-Id: ALT Linux Team development discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2008 12:42:55 -0000 Archived-At: List-Archive: List-Post: --Boundary-00=_NJ08I6/n12c90j1 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: base64 Content-Disposition: inline T24gTW9uZGF5IDEzIE9jdG9iZXIgMjAwOCAxNToyNTo0NyBJdmFuIEEuIE1lbG5pa292IHdyb3Rl Ogo+IE9uIE1vbmRheSAxMyBPY3RvYmVyIDIwMDggMTM6NDg6MjUgVmxhZGltaXIgTGV0dGlldiB3 cm90ZToKPiA+IHAucy4g8M/Iz9bFINzUzyDQ0s/ExczLySDOz9fPx88gYm9vc3QnwQo+Cj4g9SDN xc7RIGRlbHVnZSDOxSDTz8LJ0sHF1NPRIMnaLdrBINDSz8TFzM/LIM7P18/HzyDC1dPUwSDTzyDT 1MHS2c0gZ2NjLgo+IPfZ0sHWwcXT2CDUz97OxcUsIGJvb3N0INrBw8XQycwg18/UINzUzzoKPgo+ IGh0dHA6Ly9nY2MuZ251Lm9yZy9idWd6aWxsYS9zaG93X2J1Zy5jZ2k/aWQ9MzMwOTQKPgo+IOsg 08/Wwc7JwCwgZGVsdWdlIM7FINDP0MHMICDXINPQydPPyyDQwcvF1M/XLCDOwSDLz9TP0tnIINEg 1MXT1MnSz9fBzCDC1dPULgo+IPDF3sHM2M7PLgoK8NLPwszFzcEg09fR2sHOwSDTzyDTzcXbwc7O 2c0gydPQz8zY2s/Xwc7Jxc0g28HCzM/Oz9cgySDOxcnNxc7P18HO2cggCtDSz9PU0sHO09TXIMnN xc4uICDuwdDSyc3F0iwg0NLJzM/Wxc7O2cog0MHU3iDQz83Px8HF1CDX0s/ExSDC2SBkZWx1Z2Uu CgrJIMTBLCDQz9fF08nU2CDCwcfVIM7BIGdjYzQuMS1jKys/CgotLSAKQmVzdCByZWdhcmRzLApJ dmFuIEEuIE1lbG5pa292IDxpdkBhbHRsaW51eC5vcmc+Cg== --Boundary-00=_NJ08I6/n12c90j1 Content-Type: text/x-diff; charset="iso 8859-1"; name="deluge-1.0.0-alt-gcc41-workaround.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="deluge-1.0.0-alt-gcc41-workaround.patch" --- libtorrent/bindings/python/src/extensions.cpp.orig 2008-10-13 16:10:23 +0400 +++ libtorrent/bindings/python/src/extensions.cpp 2008-10-13 16:11:43 +0400 @@ -14,7 +14,7 @@ using namespace boost::python; using namespace libtorrent; -namespace +namespace this_was_unnamed_namespace_but_it_triggers_bug_in_gcc_extensions_cpp { struct torrent_plugin_wrap : torrent_plugin, wrapper @@ -109,6 +109,8 @@ namespace } // namespace unnamed +using namespace this_was_unnamed_namespace_but_it_triggers_bug_in_gcc_extensions_cpp; + boost::shared_ptr create_metadata_plugin_wrapper(torrent* t) { return create_metadata_plugin(t, NULL); --- libtorrent/bindings/python/src/peer_plugin.cpp.orig 2008-10-13 16:13:24 +0400 +++ libtorrent/bindings/python/src/peer_plugin.cpp 2008-10-13 16:16:07 +0400 @@ -16,7 +16,7 @@ using namespace boost::python; using namespace libtorrent; -namespace +namespace this_was_unnamed_namespace_but_it_triggers_bug_in_gcc_peer_plugin_cpp { struct peer_plugin_wrap : peer_plugin, wrapper { @@ -272,6 +272,8 @@ namespace } // namespace unnamed +using namespace this_was_unnamed_namespace_but_it_triggers_bug_in_gcc_peer_plugin_cpp; + void bind_peer_plugin() { class_< --Boundary-00=_NJ08I6/n12c90j1--