Author: sayer Date: 2008-06-05 16:05:23 +0200 (Thu, 05 Jun 2008) New Revision: 1009
Modified: trunk/apps/voicemail/AmSmtpClient.cpp trunk/core/AmArg.h trunk/core/AmSipMsg.cpp trunk/core/plug-in/stats/query_stats.c Log: GCC 4.3 missing includes Easy fixes from Peter Modified: trunk/apps/voicemail/AmSmtpClient.cpp =================================================================== --- trunk/apps/voicemail/AmSmtpClient.cpp 2008-06-05 14:01:29 UTC (rev 1008) +++ trunk/apps/voicemail/AmSmtpClient.cpp 2008-06-05 14:05:23 UTC (rev 1009) @@ -32,6 +32,7 @@ #include <netinet/in.h> #include <arpa/inet.h> #include <time.h> +#include <string.h> #include "AmSmtpClient.h" #include "AmUtils.h" Modified: trunk/core/AmArg.h =================================================================== --- trunk/core/AmArg.h 2008-06-05 14:01:29 UTC (rev 1008) +++ trunk/core/AmArg.h 2008-06-05 14:05:23 UTC (rev 1009) @@ -30,6 +30,7 @@ #include <assert.h> #include <string.h> +#include <stdlib.h> #include <vector> using std::vector; Modified: trunk/core/AmSipMsg.cpp =================================================================== --- trunk/core/AmSipMsg.cpp 2008-06-05 14:01:29 UTC (rev 1008) +++ trunk/core/AmSipMsg.cpp 2008-06-05 14:05:23 UTC (rev 1009) @@ -1,4 +1,5 @@ - +#include <string.h> +#include <stdlib.h> #include "AmSipMsg.h" Modified: trunk/core/plug-in/stats/query_stats.c =================================================================== --- trunk/core/plug-in/stats/query_stats.c 2008-06-05 14:01:29 UTC (rev 1008) +++ trunk/core/plug-in/stats/query_stats.c 2008-06-05 14:05:23 UTC (rev 1009) @@ -6,6 +6,7 @@ #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> +#include <stdlib.h> #include <map> #include <string> _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
