| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 168 |
| 169 /* Define to 1 if you have the <unistd.h> header file. */ | 169 /* Define to 1 if you have the <unistd.h> header file. */ |
| 170 #undef HAVE_UNISTD_H | 170 #undef HAVE_UNISTD_H |
| 171 | 171 |
| 172 /* Define to 1 if you have the <unwind.h> header file. */ | 172 /* Define to 1 if you have the <unwind.h> header file. */ |
| 173 #undef HAVE_UNWIND_H | 173 #undef HAVE_UNWIND_H |
| 174 | 174 |
| 175 /* define if your compiler has __attribute__ */ | 175 /* define if your compiler has __attribute__ */ |
| 176 #undef HAVE___ATTRIBUTE__ | 176 #undef HAVE___ATTRIBUTE__ |
| 177 | 177 |
| 178 /* Define to 1 if compiler supports __environ */ |
| 179 #undef HAVE___ENVIRON |
| 180 |
| 178 /* Define to 1 if the system has the type `__int64'. */ | 181 /* Define to 1 if the system has the type `__int64'. */ |
| 179 #define HAVE___INT64 1 | 182 #define HAVE___INT64 1 |
| 180 | 183 |
| 181 /* prefix where we look for installed files */ | 184 /* prefix where we look for installed files */ |
| 182 #undef INSTALL_PREFIX | 185 #undef INSTALL_PREFIX |
| 183 | 186 |
| 184 /* Define to 1 if int32_t is equivalent to intptr_t */ | 187 /* Define to 1 if int32_t is equivalent to intptr_t */ |
| 185 #undef INT32_EQUALS_INTPTR | 188 #undef INT32_EQUALS_INTPTR |
| 186 | 189 |
| 187 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ | 190 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 # define _WIN32_WINNT 0x0400 | 267 # define _WIN32_WINNT 0x0400 |
| 265 #endif | 268 #endif |
| 266 | 269 |
| 267 // We want to make sure not to ever try to #include heap-checker.h | 270 // We want to make sure not to ever try to #include heap-checker.h |
| 268 #define NO_HEAP_CHECK 1 | 271 #define NO_HEAP_CHECK 1 |
| 269 | 272 |
| 270 // TODO(csilvers): include windows/port.h in every relevant source file instead? | 273 // TODO(csilvers): include windows/port.h in every relevant source file instead? |
| 271 #include "windows/port.h" | 274 #include "windows/port.h" |
| 272 | 275 |
| 273 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ | 276 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ |
| OLD | NEW |