Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 199657 Details for
Bug 279699
media-radio/svxlink-090426 version bump
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
fix for GCC 4.4 and glibc-2.10 problems
svxlink-090426-gcc44.patch (text/plain), 4.55 KB, created by
Thomas Beierlein
on 2009-07-30 16:12:14 UTC
(
hide
)
Description:
fix for GCC 4.4 and glibc-2.10 problems
Filename:
MIME Type:
Creator:
Thomas Beierlein
Created:
2009-07-30 16:12:14 UTC
Size:
4.55 KB
patch
obsolete
>diff -urN svxlink-090426.orig/async/audio/AsyncAudioDecoderS16.cpp svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp >--- svxlink-090426.orig/async/audio/AsyncAudioDecoderS16.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -48,6 +48,7 @@ > * > ****************************************************************************/ > >+#include <stdint.h> > #include "AsyncAudioDecoderS16.h" > > >diff -urN svxlink-090426.orig/async/audio/AsyncAudioDevice.h svxlink-090426/async/audio/AsyncAudioDevice.h >--- svxlink-090426.orig/async/audio/AsyncAudioDevice.h 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/async/audio/AsyncAudioDevice.h 2009-07-18 12:07:31.000000000 +0000 >@@ -37,6 +37,7 @@ > * > ****************************************************************************/ > >+#include <stdint.h> > #include <sigc++/sigc++.h> > > #include <string> >diff -urN svxlink-090426.orig/async/audio/AsyncAudioRecorder.h svxlink-090426/async/audio/AsyncAudioRecorder.h >--- svxlink-090426.orig/async/audio/AsyncAudioRecorder.h 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/async/audio/AsyncAudioRecorder.h 2009-07-18 12:07:31.000000000 +0000 >@@ -34,6 +34,7 @@ > * > ****************************************************************************/ > >+#include <stdint.h> > #include <stdio.h> > #include <sigc++/sigc++.h> > >diff -urN svxlink-090426.orig/async/core/AsyncSerialDevice.cpp svxlink-090426/async/core/AsyncSerialDevice.cpp >--- svxlink-090426.orig/async/core/AsyncSerialDevice.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/async/core/AsyncSerialDevice.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -35,6 +35,7 @@ > * > ****************************************************************************/ > >+#include <cstdio> > #include <sys/types.h> > #include <sys/stat.h> > #include <fcntl.h> >diff -urN svxlink-090426.orig/async/cpp/AsyncCppDnsLookupWorker.cpp svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp >--- svxlink-090426.orig/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -38,6 +38,7 @@ > * > ****************************************************************************/ > >+#include <cstdio> > #include <sys/socket.h> > #include <netinet/in.h> > #include <arpa/inet.h> >diff -urN svxlink-090426.orig/async/demo/AsyncSerial_demo.cpp svxlink-090426/async/demo/AsyncSerial_demo.cpp >--- svxlink-090426.orig/async/demo/AsyncSerial_demo.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/async/demo/AsyncSerial_demo.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -1,3 +1,4 @@ >+#include <cstdio> > #include <iostream> > #include <cstdlib> > >diff -urN svxlink-090426.orig/echolib/EchoLinkStationData.cpp svxlink-090426/echolib/EchoLinkStationData.cpp >--- svxlink-090426.orig/echolib/EchoLinkStationData.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/echolib/EchoLinkStationData.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -201,7 +201,7 @@ > m_status = STAT_UNKNOWN; > } > >- char *space = strchr(end_desc, ' '); >+ const char *space = strchr(end_desc, ' '); > if (space != 0) > { > strncpy(str, space+1, 5); >diff -urN svxlink-090426.orig/svxlink/remotetrx/remotetrx.cpp svxlink-090426/svxlink/remotetrx/remotetrx.cpp >--- svxlink-090426.orig/svxlink/remotetrx/remotetrx.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/svxlink/remotetrx/remotetrx.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -678,7 +678,7 @@ > } > > int write_len = 0; >- char *nl = strchr(ptr, '\n'); >+ const char *nl = strchr(ptr, '\n'); > if (nl != 0) > { > write_len = nl-ptr+1; >diff -urN svxlink-090426.orig/svxlink/svxlink/MsgHandler.cpp svxlink-090426/svxlink/svxlink/MsgHandler.cpp >--- svxlink-090426.orig/svxlink/svxlink/MsgHandler.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/svxlink/svxlink/MsgHandler.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -34,6 +34,7 @@ > * > ****************************************************************************/ > >+#include <stdint.h> > #include <sys/types.h> > #include <sys/stat.h> > #include <fcntl.h> >diff -urN svxlink-090426.orig/svxlink/svxlink/svxlink.cpp svxlink-090426/svxlink/svxlink/svxlink.cpp >--- svxlink-090426.orig/svxlink/svxlink/svxlink.cpp 2009-07-18 12:07:53.000000000 +0000 >+++ svxlink-090426/svxlink/svxlink/svxlink.cpp 2009-07-18 12:07:31.000000000 +0000 >@@ -661,7 +661,7 @@ > } > > int write_len = 0; >- char *nl = strchr(ptr, '\n'); >+ const char *nl = strchr(ptr, '\n'); > if (nl != 0) > { > write_len = nl-ptr+1;
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 Raw
Actions:
View
Attachments on
bug 279699
:
199655
| 199657