| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent aed3c7e commit 4dd763b
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -297,6 +297,8 @@ Tools/Demos | |||
| 297 | 297 | Build | |
| 298 | 298 | ----- | |
| 299 | 299 | ||
| 300 | + - Issue #4895: Use _strdup on Windows CE. | ||
| 301 | + | ||
| 300 | 302 | - Issue #4472: "configure --enable-shared" now works on OSX | |
| 301 | 303 | ||
| 302 | 304 | - Issues #4728 and #4060: WORDS_BIGEDIAN is now correct in Universal builds. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -88,6 +88,12 @@ WIN32 is still required for the locale module. | |||
| 88 | 88 | #define USE_SOCKET | |
| 89 | 89 | #endif | |
| 90 | 90 | ||
| 91 | + /* CE6 doesn't have strdup() but _strdup(). Assume the same for earlier versions. */ | ||
| 92 | + #if defined(MS_WINCE) | ||
| 93 | + # include <stdlib.h> | ||
| 94 | + # define strdup _strdup | ||
| 95 | + #endif | ||
| 96 | + | ||
| 91 | 97 | #ifdef MS_WINCE | |
| 92 | 98 | /* Python uses GetVersion() to distinguish between | |
| 93 | 99 | * Windows NT and 9x/ME where OS Unicode support is concerned. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments