Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 294471 Details for
Bug 426492
Review Request: jabbin - Instant messaging and VoIP Jabber client
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
PATCH: fix compilation with gcc4.3
jabbin-2.0beta2a-gcc43.patch (text/plain), 4.63 KB, created by
Hans de Goede
on 2008-02-09 15:50:18 UTC
(
hide
)
Description:
PATCH: fix compilation with gcc4.3
Filename:
MIME Type:
Creator:
Hans de Goede
Created:
2008-02-09 15:50:18 UTC
Size:
4.63 KB
patch
obsolete
>diff -ur jabbin-2.0beta2a/3party/jrtplib/rtcpcompoundpacketbuilder.cpp jabbin-2.0beta2a.new/3party/jrtplib/rtcpcompoundpacketbuilder.cpp >--- jabbin-2.0beta2a/3party/jrtplib/rtcpcompoundpacketbuilder.cpp 2006-08-10 12:09:46.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/jrtplib/rtcpcompoundpacketbuilder.cpp 2008-02-09 16:32:07.000000000 +0100 >@@ -43,6 +43,7 @@ > #endif // WIN32 > > #include "rtpdebug.h" >+#include <string.h> > > RTCPCompoundPacketBuilder::RTCPCompoundPacketBuilder() > { >diff -ur jabbin-2.0beta2a/3party/jrtplib/rtppacket.cpp jabbin-2.0beta2a.new/3party/jrtplib/rtppacket.cpp >--- jabbin-2.0beta2a/3party/jrtplib/rtppacket.cpp 2006-08-10 12:09:46.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/jrtplib/rtppacket.cpp 2008-02-09 16:32:31.000000000 +0100 >@@ -46,6 +46,7 @@ > #endif // RTPDEBUG > > #include "rtpdebug.h" >+#include <string.h> > > void RTPPacket::Clear() > { >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/base/asynctcpsocket.cc jabbin-2.0beta2a.new/3party/libjingle/talk/base/asynctcpsocket.cc >--- jabbin-2.0beta2a/3party/libjingle/talk/base/asynctcpsocket.cc 2006-08-10 12:09:44.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/base/asynctcpsocket.cc 2008-02-09 16:34:00.000000000 +0100 >@@ -32,6 +32,7 @@ > #include "talk/base/byteorder.h" > #include "talk/base/common.h" > #include "talk/base/logging.h" >+#include <cstring> > > #if defined(_MSC_VER) && _MSC_VER < 1300 > namespace std { >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/base/bytebuffer.cc jabbin-2.0beta2a.new/3party/libjingle/talk/base/bytebuffer.cc >--- jabbin-2.0beta2a/3party/libjingle/talk/base/bytebuffer.cc 2006-08-10 12:09:44.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/base/bytebuffer.cc 2008-02-09 16:34:29.000000000 +0100 >@@ -30,6 +30,7 @@ > #include "talk/base/byteorder.h" > #include <algorithm> > #include <cassert> >+#include <cstring> > > #if defined(_MSC_VER) && _MSC_VER < 1300 > namespace std { >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/base/messagequeue.h jabbin-2.0beta2a.new/3party/libjingle/talk/base/messagequeue.h >--- jabbin-2.0beta2a/3party/libjingle/talk/base/messagequeue.h 2006-08-10 12:09:44.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/base/messagequeue.h 2008-02-09 16:34:46.000000000 +0100 >@@ -35,6 +35,7 @@ > #include <vector> > #include <queue> > #include <algorithm> >+#include <cstring> > > namespace cricket { > >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/base/physicalsocketserver.cc jabbin-2.0beta2a.new/3party/libjingle/talk/base/physicalsocketserver.cc >--- jabbin-2.0beta2a/3party/libjingle/talk/base/physicalsocketserver.cc 2006-08-10 12:09:44.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/base/physicalsocketserver.cc 2008-02-09 16:38:28.000000000 +0100 >@@ -30,6 +30,8 @@ > #endif > > #include <cassert> >+#include <cstring> >+#include <algorithm> > > #ifdef POSIX > extern "C" { >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/base/socketadapters.cc jabbin-2.0beta2a.new/3party/libjingle/talk/base/socketadapters.cc >--- jabbin-2.0beta2a/3party/libjingle/talk/base/socketadapters.cc 2006-08-10 12:09:44.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/base/socketadapters.cc 2008-02-09 16:39:10.000000000 +0100 >@@ -42,6 +42,7 @@ > #endif > > #include <cassert> >+#include <cstring> > > #include "talk/base/base64.h" > #include "talk/base/basicdefs.h" >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/p2p/base/stun.cc jabbin-2.0beta2a.new/3party/libjingle/talk/p2p/base/stun.cc >--- jabbin-2.0beta2a/3party/libjingle/talk/p2p/base/stun.cc 2006-08-10 12:09:42.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/p2p/base/stun.cc 2008-02-09 16:40:23.000000000 +0100 >@@ -29,6 +29,7 @@ > #include "talk/p2p/base/stun.h" > #include <iostream> > #include <cassert> >+#include <cstring> > > #if defined(_MSC_VER) && _MSC_VER < 1300 > namespace std { >diff -ur jabbin-2.0beta2a/3party/libjingle/talk/xmpp/xmpppassword.h jabbin-2.0beta2a.new/3party/libjingle/talk/xmpp/xmpppassword.h >--- jabbin-2.0beta2a/3party/libjingle/talk/xmpp/xmpppassword.h 2006-08-10 12:09:44.000000000 +0200 >+++ jabbin-2.0beta2a.new/3party/libjingle/talk/xmpp/xmpppassword.h 2008-02-09 16:39:47.000000000 +0100 >@@ -30,6 +30,7 @@ > > #include "talk/base/linked_ptr.h" > #include "talk/base/scoped_ptr.h" >+#include <cstring> > > namespace buzz { > >diff -ur jabbin-2.0beta2a/src/calldlg.cpp jabbin-2.0beta2a.new/src/calldlg.cpp >--- jabbin-2.0beta2a/src/calldlg.cpp 2006-08-10 12:09:52.000000000 +0200 >+++ jabbin-2.0beta2a.new/src/calldlg.cpp 2008-02-09 16:45:24.000000000 +0100 >@@ -28,6 +28,7 @@ > #include <qtoolbutton.h> > #include <qpushbutton.h> > #include <qsignalmapper.h> >+#include <stdlib.h> /* for abs() */ > > int call_dlg_mic_level = 100; > int call_dlg_dsp_level = 100;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 426492
:
293909
| 294471 |
294496