diff -Naur svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp svxlink-090426-mod/async/audio/AsyncAudioDecoderS16.cpp --- svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp 2009-04-09 13:42:34.000000000 +0300 +++ svxlink-090426-mod/async/audio/AsyncAudioDecoderS16.cpp 2009-05-09 17:41:49.000000000 +0300 @@ -48,6 +48,7 @@ * ****************************************************************************/ +#include #include "AsyncAudioDecoderS16.h" diff -Naur svxlink-090426/async/audio/AsyncAudioDevice.h svxlink-090426-mod/async/audio/AsyncAudioDevice.h --- svxlink-090426/async/audio/AsyncAudioDevice.h 2009-03-04 00:30:40.000000000 +0200 +++ svxlink-090426-mod/async/audio/AsyncAudioDevice.h 2009-05-09 17:40:06.000000000 +0300 @@ -37,6 +37,7 @@ * ****************************************************************************/ +#include #include #include diff -Naur svxlink-090426/async/audio/AsyncAudioRecorder.h svxlink-090426-mod/async/audio/AsyncAudioRecorder.h --- svxlink-090426/async/audio/AsyncAudioRecorder.h 2009-04-26 12:17:53.000000000 +0300 +++ svxlink-090426-mod/async/audio/AsyncAudioRecorder.h 2009-05-09 17:42:09.000000000 +0300 @@ -34,6 +34,7 @@ * ****************************************************************************/ +#include #include #include diff -Naur svxlink-090426/async/core/AsyncSerialDevice.cpp svxlink-090426-mod/async/core/AsyncSerialDevice.cpp --- svxlink-090426/async/core/AsyncSerialDevice.cpp 2006-11-07 22:44:20.000000000 +0200 +++ svxlink-090426-mod/async/core/AsyncSerialDevice.cpp 2009-05-09 17:40:06.000000000 +0300 @@ -35,6 +35,7 @@ * ****************************************************************************/ +#include #include #include #include diff -Naur svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp svxlink-090426-mod/async/cpp/AsyncCppDnsLookupWorker.cpp --- svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-04-26 12:17:53.000000000 +0300 +++ svxlink-090426-mod/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-05-09 17:40:06.000000000 +0300 @@ -38,6 +38,7 @@ * ****************************************************************************/ +#include #include #include #include diff -Naur svxlink-090426/async/demo/AsyncSerial_demo.cpp svxlink-090426-mod/async/demo/AsyncSerial_demo.cpp --- svxlink-090426/async/demo/AsyncSerial_demo.cpp 2008-05-13 21:57:54.000000000 +0300 +++ svxlink-090426-mod/async/demo/AsyncSerial_demo.cpp 2009-05-09 17:40:06.000000000 +0300 @@ -1,3 +1,4 @@ +#include #include #include diff -Naur svxlink-090426/echolib/EchoLinkStationData.cpp svxlink-090426-mod/echolib/EchoLinkStationData.cpp --- svxlink-090426/echolib/EchoLinkStationData.cpp 2007-11-26 23:18:27.000000000 +0200 +++ svxlink-090426-mod/echolib/EchoLinkStationData.cpp 2009-05-09 17:40:06.000000000 +0300 @@ -201,7 +201,7 @@ m_status = STAT_UNKNOWN; } - char *space = strchr(end_desc, ' '); + char *space = strchr((char *)end_desc, ' '); if (space != 0) { strncpy(str, space+1, 5); diff -Naur svxlink-090426/svxlink/remotetrx/remotetrx.cpp svxlink-090426-mod/svxlink/remotetrx/remotetrx.cpp --- svxlink-090426/svxlink/remotetrx/remotetrx.cpp 2009-04-26 12:17:53.000000000 +0300 +++ svxlink-090426-mod/svxlink/remotetrx/remotetrx.cpp 2009-05-09 17:40:06.000000000 +0300 @@ -678,7 +678,7 @@ } int write_len = 0; - char *nl = strchr(ptr, '\n'); + char *nl = strchr((char *)ptr, '\n'); if (nl != 0) { write_len = nl-ptr+1; diff -Naur svxlink-090426/svxlink/svxlink/MsgHandler.cpp svxlink-090426-mod/svxlink/svxlink/MsgHandler.cpp --- svxlink-090426/svxlink/svxlink/MsgHandler.cpp 2009-02-08 14:56:13.000000000 +0200 +++ svxlink-090426-mod/svxlink/svxlink/MsgHandler.cpp 2009-05-09 17:43:36.000000000 +0300 @@ -34,6 +34,7 @@ * ****************************************************************************/ +#include #include #include #include diff -Naur svxlink-090426/svxlink/svxlink/svxlink.cpp svxlink-090426-mod/svxlink/svxlink/svxlink.cpp --- svxlink-090426/svxlink/svxlink/svxlink.cpp 2009-04-26 12:17:53.000000000 +0300 +++ svxlink-090426-mod/svxlink/svxlink/svxlink.cpp 2009-05-09 17:40:06.000000000 +0300 @@ -661,7 +661,7 @@ } int write_len = 0; - char *nl = strchr(ptr, '\n'); + char *nl = strchr((char *)ptr, '\n'); if (nl != 0) { write_len = nl-ptr+1;