Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 209490 | Differences between
and this patch

Collapse All | Expand All

(-)src/lib/HTTP/HTTPMessage.cpp (+1 lines)
Lines 28-33 Link Here
28
#include "HTTPParser.h"
28
#include "HTTPParser.h"
29
29
30
#include <iostream>
30
#include <iostream>
31
#include <cstdlib>
31
#include <sstream>
32
#include <sstream>
32
#include <time.h>
33
#include <time.h>
33
34
(-)src/lib/HTTP/HTTPServer.cpp (+1 lines)
Lines 32-37 Link Here
32
32
33
#include <iostream>
33
#include <iostream>
34
#include <sstream>
34
#include <sstream>
35
#include <cstdlib>
35
#ifndef WIN32
36
#ifndef WIN32
36
#include <errno.h>
37
#include <errno.h>
37
#endif
38
#endif
(-)src/lib/SSDP/UDPSocket.cpp (+1 lines)
Lines 27-32 Link Here
27
27
28
#include <iostream>
28
#include <iostream>
29
#include <sstream>
29
#include <sstream>
30
#include <cstring>
30
31
31
using namespace std;
32
using namespace std;
32
33
(-)src/lib/Transcoding/FaadWrapper.cpp (+1 lines)
Lines 34-39 Link Here
34
 */
34
 */
35
35
36
#include "FaadWrapper.h"
36
#include "FaadWrapper.h"
37
#include <cstring>
37
38
38
#ifndef DISABLE_TRANSCODING
39
#ifndef DISABLE_TRANSCODING
39
#ifdef HAVE_FAAD
40
#ifdef HAVE_FAAD
(-)src/lib/Transcoding/LameWrapper.cpp (+1 lines)
Lines 29-34 Link Here
29
#include "../SharedConfig.h"
29
#include "../SharedConfig.h"
30
#include <iostream>
30
#include <iostream>
31
#include <sstream>
31
#include <sstream>
32
#include <cstring>
32
33
33
const std::string LOGNAME = "LameWrapper";
34
const std::string LOGNAME = "LameWrapper";
34
35
(-)src/lib/Transcoding/PcmEncoder.cpp (+1 lines)
Lines 24-29 Link Here
24
#include "PcmEncoder.h"
24
#include "PcmEncoder.h"
25
25
26
#include <iostream>
26
#include <iostream>
27
#include <cstring>
27
using namespace std;
28
using namespace std;
28
29
29
#ifndef DISABLE_TRANSCODING
30
#ifndef DISABLE_TRANSCODING
(-)src/lib/Transcoding/TranscodingCache.cpp (+1 lines)
Lines 36-41 Link Here
36
36
37
#include <iostream>
37
#include <iostream>
38
#include <fstream>
38
#include <fstream>
39
#include <cstring>
39
40
40
using namespace std;
41
using namespace std;
41
42
(-)src/lib/Transcoding/WavEncoder.cpp (+1 lines)
Lines 24-29 Link Here
24
#include "WavEncoder.h"
24
#include "WavEncoder.h"
25
25
26
#include <iostream>
26
#include <iostream>
27
#include <cstring>
27
using namespace std;
28
using namespace std;
28
29
29
#ifndef DISABLE_TRANSCODING
30
#ifndef DISABLE_TRANSCODING
(-)src/lib/libmain.cpp (+1 lines)
Lines 24-29 Link Here
24
#include "../../include/fuppes.h"
24
#include "../../include/fuppes.h"
25
25
26
#include <iostream>
26
#include <iostream>
27
#include <cstring>
27
#include "Common/Common.h"
28
#include "Common/Common.h"
28
#include "SharedConfig.h"
29
#include "SharedConfig.h"
29
#include "SharedLog.h"
30
#include "SharedLog.h"

Return to bug 209490