| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 /* Define to 1 if you have the <dlfcn.h> header file. */ | 67 /* Define to 1 if you have the <dlfcn.h> header file. */ |
| 68 #undef HAVE_DLFCN_H | 68 #undef HAVE_DLFCN_H |
| 69 | 69 |
| 70 /* Define to 1 if the system has the type `Elf32_Versym'. */ | 70 /* Define to 1 if the system has the type `Elf32_Versym'. */ |
| 71 #undef HAVE_ELF32_VERSYM | 71 #undef HAVE_ELF32_VERSYM |
| 72 | 72 |
| 73 /* Define to 1 if you have the <execinfo.h> header file. */ | 73 /* Define to 1 if you have the <execinfo.h> header file. */ |
| 74 #undef HAVE_EXECINFO_H | 74 #undef HAVE_EXECINFO_H |
| 75 | 75 |
| 76 /* Define to 1 if you have the <fcntl.h> header file. */ | 76 /* Define to 1 if you have the <fcntl.h> header file. */ |
| 77 #undef HAVE_FCNTL_H | 77 #define HAVE_FCNTL_H 1 |
| 78 | 78 |
| 79 /* Define to 1 if you have the <features.h> header file. */ | 79 /* Define to 1 if you have the <features.h> header file. */ |
| 80 #undef HAVE_FEATURES_H | 80 #undef HAVE_FEATURES_H |
| 81 | 81 |
| 82 /* Define to 1 if you have the `geteuid' function. */ | 82 /* Define to 1 if you have the `geteuid' function. */ |
| 83 #undef HAVE_GETEUID | 83 #undef HAVE_GETEUID |
| 84 | 84 |
| 85 /* Define to 1 if you have the `getpagesize' function. */ | 85 /* Define to 1 if you have the `getpagesize' function. */ |
| 86 #define HAVE_GETPAGESIZE 1 /* we define it in windows/port.cc */ | 86 #define HAVE_GETPAGESIZE 1 /* we define it in windows/port.cc */ |
| 87 | 87 |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 # define _WIN32_WINNT 0x0501 | 302 # define _WIN32_WINNT 0x0501 |
| 303 #endif | 303 #endif |
| 304 | 304 |
| 305 // We want to make sure not to ever try to #include heap-checker.h | 305 // We want to make sure not to ever try to #include heap-checker.h |
| 306 #define NO_HEAP_CHECK 1 | 306 #define NO_HEAP_CHECK 1 |
| 307 | 307 |
| 308 // TODO(csilvers): include windows/port.h in every relevant source file instead? | 308 // TODO(csilvers): include windows/port.h in every relevant source file instead? |
| 309 #include "windows/port.h" | 309 #include "windows/port.h" |
| 310 | 310 |
| 311 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ | 311 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ |
| OLD | NEW |