summary refs log tree commit diff
path: root/pkgs/applications/science/misc/root/purify_include_paths_root5.patch
blob: 6773603b8ad37adb7e425dd4720a539402d5d4e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
diff --git a/cint/cint/src/loadfile.cxx b/cint/cint/src/loadfile.cxx
--- a/cint/cint/src/loadfile.cxx
+++ b/cint/cint/src/loadfile.cxx
@@ -1365,92 +1365,6 @@ int G__statfilename(const char *filenamein, struct stat *statBuf,
          }
       }         
 #endif /* G__EDU_VERSION */
-      
-#ifdef G__VISUAL
-      /**********************************************
-       * try /msdev/include
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         workname.Format("/msdev/include/%s%s",filename(),addpost[i2]);
-         res = stat( workname, statBuf );         
-         if (res==0) {
-            if (fullPath) fullPath->Swap(workname);
-            return res;
-         }
-      }
-#endif /* G__VISUAL */
-         
-#ifdef G__SYMANTEC
-      /**********************************************
-       * try /sc/include
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         workname.Format("/sc/include/%s%s",filename(),addpost[i2]);
-         res = stat( workname, statBuf );         
-         if (res==0) {
-            if (fullPath) fullPath->Swap(workname);
-            return res;
-         }
-      }
-#endif // G__SYMANTEC
-         
-#ifndef G__WIN32
-      /**********************************************
-       * try /usr/include/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         workname.Format("/usr/include/%s%s",filename(),addpost[i2]);
-         res = stat( workname, statBuf );         
-         if (res==0) {
-            if (fullPath) fullPath->Swap(workname);
-            return res;
-         }
-      }
-#endif
-      
-#ifdef __GNUC__
-      /**********************************************
-       * try /usr/include/g++/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         workname.Format("/usr/include/g++/%s%s",filename(),addpost[i2]);
-         res = stat( workname, statBuf );         
-         if (res==0) {
-            if (fullPath) fullPath->Swap(workname);
-            return res;
-         }
-      }
-#endif /* __GNUC__ */
-      
-#ifndef G__WIN32
-      /* #ifdef __hpux */
-      /**********************************************
-       * try /usr/include/CC/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         workname.Format("/usr/include/CC/%s%s",filename(),addpost[i2]);
-         res = stat( workname, statBuf );         
-         if (res==0) {
-            if (fullPath) fullPath->Swap(workname);
-            return res;
-         }
-      }         
-#endif
-         
-#ifndef G__WIN32
-      /**********************************************
-       * try /usr/include/codelibs/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         workname.Format("/usr/include/codelibs/%s%s"
-                         ,filename(),addpost[i2]);
-         res = stat( workname, statBuf );         
-         if (res==0) {
-            if (fullPath) fullPath->Swap(workname);
-            return res;
-         }
-      }
-#endif
    }
    return -1;
 }
@@ -1960,107 +1874,6 @@ int G__loadfile(const char *filenamein)
       }
       if(G__ifile.fp) break;
 #endif /* G__EDU_VERSION */
-
-#ifdef G__VISUAL
-      /**********************************************
-       * try /msdev/include
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         G__snprintf(G__ifile.name,G__MAXFILENAME,"/msdev/include/%s%s",filename(),addpost[i2]);
-#ifndef G__WIN32
-        G__ifile.fp = fopen(G__ifile.name,"r");
-#else
-        G__ifile.fp = fopen(G__ifile.name,"rb");
-#endif
-        G__globalcomp=G__store_globalcomp;
-      }
-      if(G__ifile.fp) break;
-#endif /* G__VISUAL */
-
-#ifdef G__SYMANTEC
-      /**********************************************
-       * try /sc/include
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         G__snprintf(G__ifile.name,G__MAXFILENAME,"/sc/include/%s%s",filename(),addpost[i2]);
-#ifndef G__WIN32
-        G__ifile.fp = fopen(G__ifile.name,"r");
-#else
-        G__ifile.fp = fopen(G__ifile.name,"rb");
-#endif
-        G__globalcomp=G__store_globalcomp;
-      }
-      if(G__ifile.fp) break;
-#endif /* G__SYMANTEC */
-
-#ifndef G__WIN32
-      /**********************************************
-       * try /usr/include/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         G__snprintf(G__ifile.name,G__MAXFILENAME,"/usr/include/%s%s",filename(),addpost[i2]);
-#ifndef G__WIN32
-        G__ifile.fp = fopen(G__ifile.name,"r");
-#else
-        G__ifile.fp = fopen(G__ifile.name,"rb");
-#endif
-        G__globalcomp=G__store_globalcomp;
-      }
-      if(G__ifile.fp) break;
-#endif
-
-#ifdef __GNUC__
-      /**********************************************
-       * try /usr/include/g++/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         G__snprintf(G__ifile.name,G__MAXFILENAME,"/usr/include/g++/%s%s",filename(),addpost[i2]);
-#ifndef G__WIN32
-        G__ifile.fp = fopen(G__ifile.name,"r");
-#else
-        G__ifile.fp = fopen(G__ifile.name,"rb");
-#endif
-        G__globalcomp=G__store_globalcomp;
-      }
-      if(G__ifile.fp) break;
-#endif /* __GNUC__ */
-
-#ifndef G__WIN32
-/* #ifdef __hpux */
-      /**********************************************
-       * try /usr/include/CC/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-         G__snprintf(G__ifile.name,G__MAXFILENAME,"/usr/include/CC/%s%s",filename(),addpost[i2]);
-#ifndef G__WIN32
-        G__ifile.fp = fopen(G__ifile.name,"r");
-#else
-        G__ifile.fp = fopen(G__ifile.name,"rb");
-#endif
-        G__globalcomp=G__store_globalcomp;
-      }
-      if(G__ifile.fp) break;
-/* #endif __hpux */
-#endif
-
-#ifndef G__WIN32
-/* #ifdef __hpux */
-      /**********************************************
-       * try /usr/include/codelibs/filename
-       **********************************************/
-      if('\0'!=G__cintsysdir[0]) {
-        G__snprintf(G__ifile.name,G__MAXFILENAME,"/usr/include/codelibs/%s%s"
-                    ,filename(),addpost[i2]);
-#ifndef G__WIN32
-        G__ifile.fp = fopen(G__ifile.name,"r");
-#else
-        G__ifile.fp = fopen(G__ifile.name,"rb");
-#endif
-        G__globalcomp=G__store_globalcomp;
-      }
-      if(G__ifile.fp) break;
-/* #endif __hpux */
-#endif
     }
   }