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

Collapse All | Expand All

(-)src3.2.6.old/KERNEL_SRC_3.2.6/src/Batch/Batch_BatchManager_Local.cxx (+1 lines)
Lines 32-37 Link Here
32
#include <cstdlib>
32
#include <cstdlib>
33
#include <sys/types.h>
33
#include <sys/types.h>
34
#include <sys/wait.h>
34
#include <sys/wait.h>
35
#include <linux/limits.h>
35
#include <ctime>
36
#include <ctime>
36
#include <unistd.h>
37
#include <unistd.h>
37
#include <pthread.h>
38
#include <pthread.h>
(-)src3.2.6.old/KERNEL_SRC_3.2.6/src/Logger/SALOME_Logger_Server.hxx (-2 / +3 lines)
Lines 12-18 Link Here
12
#define SALOME_Logger_Server_include
12
#define SALOME_Logger_Server_include
13
13
14
#ifndef WNT
14
#ifndef WNT
15
#include <fstream.h>
15
#include <fstream>
16
#include <iosfwd>
16
#else
17
#else
17
#include <fstream>
18
#include <fstream>
18
#include <iosfwd>
19
#include <iosfwd>
Lines 41-47 Link Here
41
        bool m_putIntoFile;
42
        bool m_putIntoFile;
42
	//ofstream class specialized for disk file output
43
	//ofstream class specialized for disk file output
43
#ifndef WNT
44
#ifndef WNT
44
        ofstream m_outputFile; 
45
        std::ofstream m_outputFile; 
45
#else
46
#else
46
		std::ofstream m_outputFile; 
47
		std::ofstream m_outputFile; 
47
#endif
48
#endif
(-)src3.2.6.old/KERNEL_SRC_3.2.6/src/Logger/SALOME_Logger_Server_main.cxx (+1 lines)
Lines 9-14 Link Here
9
//  Module : SALOME
9
//  Module : SALOME
10
10
11
#include <iostream>
11
#include <iostream>
12
#include <cstdlib>
12
#include "SALOME_Logger_Server.hxx"
13
#include "SALOME_Logger_Server.hxx"
13
#include <SALOMEconfig.h>
14
#include <SALOMEconfig.h>
14
#include <sys/types.h>
15
#include <sys/types.h>
(-)src3.2.6.old/KERNEL_SRC_3.2.6/src/SALOMELocalTrace/LocalTraceBufferPool.cxx (+1 lines)
Lines 27-32 Link Here
27
#include <iostream>
27
#include <iostream>
28
#include <limits.h>
28
#include <limits.h>
29
#include <cassert>
29
#include <cassert>
30
#include <cstring>
30
31
31
#ifndef WNT
32
#ifndef WNT
32
#include <dlfcn.h>
33
#include <dlfcn.h>
(-)src3.2.6.old/KERNEL_SRC_3.2.6/src/TOOLSDS/SALOMEDS_Tool.cxx (-2 / +2 lines)
Lines 41-48 Link Here
41
41
42
#ifndef WNT
42
#ifndef WNT
43
#include <stdio.h>
43
#include <stdio.h>
44
#include <iostream.h> 
44
#include <iostream> 
45
#include <fstream.h>
45
#include <fstream>
46
#include <sys/time.h>
46
#include <sys/time.h>
47
#else
47
#else
48
#endif
48
#endif

Return to bug 155974