OLD | NEW |
1 /* A manual version of config.h fit for windows machines. */ | 1 /* A manual version of config.h fit for windows machines. */ |
2 | 2 |
3 /* Sometimes we accidentally #include this config.h instead of the one | 3 /* Sometimes we accidentally #include this config.h instead of the one |
4 in .. -- this is particularly true for msys/mingw, which uses the | 4 in .. -- this is particularly true for msys/mingw, which uses the |
5 unix config.h but also runs code in the windows directory. | 5 unix config.h but also runs code in the windows directory. |
6 */ | 6 */ |
7 #ifdef __MINGW32__ | 7 #ifdef __MINGW32__ |
8 #include "../config.h" | 8 #include "../config.h" |
9 #define GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ | 9 #define GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ |
10 #endif | 10 #endif |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 */ | 206 */ |
207 #undef LT_OBJDIR | 207 #undef LT_OBJDIR |
208 | 208 |
209 /* Define to 'volatile' if __malloc_hook is declared volatile */ | 209 /* Define to 'volatile' if __malloc_hook is declared volatile */ |
210 #undef MALLOC_HOOK_MAYBE_VOLATILE | 210 #undef MALLOC_HOOK_MAYBE_VOLATILE |
211 | 211 |
212 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ | 212 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ |
213 #undef NO_MINUS_C_MINUS_O | 213 #undef NO_MINUS_C_MINUS_O |
214 | 214 |
215 /* Name of package */ | 215 /* Name of package */ |
216 #define PACKAGE "google-perftools" | 216 #define PACKAGE "gperftools" |
217 | 217 |
218 /* Define to the address where bug reports for this package should be sent. */ | 218 /* Define to the address where bug reports for this package should be sent. */ |
219 #define PACKAGE_BUGREPORT "opensource@google.com" | 219 #define PACKAGE_BUGREPORT "opensource@google.com" |
220 | 220 |
221 /* Define to the full name of this package. */ | 221 /* Define to the full name of this package. */ |
222 #define PACKAGE_NAME "google-perftools" | 222 #define PACKAGE_NAME "gperftools" |
223 | 223 |
224 /* Define to the full name and version of this package. */ | 224 /* Define to the full name and version of this package. */ |
225 #define PACKAGE_STRING "google-perftools 1.8" | 225 #define PACKAGE_STRING "gperftools 2.0" |
226 | 226 |
227 /* Define to the one symbol short name of this package. */ | 227 /* Define to the one symbol short name of this package. */ |
228 #define PACKAGE_TARNAME "google-perftools" | 228 #define PACKAGE_TARNAME "gperftools" |
229 | 229 |
230 /* Define to the home page for this package. */ | 230 /* Define to the home page for this package. */ |
231 #undef PACKAGE_URL | 231 #undef PACKAGE_URL |
232 | 232 |
233 /* Define to the version of this package. */ | 233 /* Define to the version of this package. */ |
234 #define PACKAGE_VERSION "1.8" | 234 #define PACKAGE_VERSION "2.0" |
235 | 235 |
236 /* How to access the PC from a struct ucontext */ | 236 /* How to access the PC from a struct ucontext */ |
237 #undef PC_FROM_UCONTEXT | 237 #undef PC_FROM_UCONTEXT |
238 | 238 |
239 /* Always the empty-string on non-windows systems. On windows, should be | 239 /* Always the empty-string on non-windows systems. On windows, should be |
240 "__declspec(dllexport)". This way, when we compile the dll, we export our | 240 "__declspec(dllexport)". This way, when we compile the dll, we export our |
241 functions/classes. It's safe to define this here because config.h is only | 241 functions/classes. It's safe to define this here because config.h is only |
242 used internally, to compile the DLL, and every DLL source file #includes | 242 used internally, to compile the DLL, and every DLL source file #includes |
243 "config.h" before anything else. */ | 243 "config.h" before anything else. */ |
244 #ifndef PERFTOOLS_DLL_DECL | 244 #ifndef PERFTOOLS_DLL_DECL |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 # define _WIN32_WINNT 0x0501 | 297 # define _WIN32_WINNT 0x0501 |
298 #endif | 298 #endif |
299 | 299 |
300 // We want to make sure not to ever try to #include heap-checker.h | 300 // We want to make sure not to ever try to #include heap-checker.h |
301 #define NO_HEAP_CHECK 1 | 301 #define NO_HEAP_CHECK 1 |
302 | 302 |
303 // TODO(csilvers): include windows/port.h in every relevant source file instead? | 303 // TODO(csilvers): include windows/port.h in every relevant source file instead? |
304 #include "windows/port.h" | 304 #include "windows/port.h" |
305 | 305 |
306 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ | 306 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ |
OLD | NEW |