Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | compile fix for mingw (thanks to Robert Engelhardt). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | json |
Files: | files | file ages | folders |
SHA1: |
58d415644631a3bf8ff91ab8cbc0bae0 |
User & Date: | stephan 2011-09-16 11:48:41.812 |
Original Comment: | compile fix for MSVC (thanks to Robert Engelhardt). |
Context
2011-09-16
| ||
13:34 | s/unlink/remove/ for Windows build (thanks again to Robert Engelhardt). ... (check-in: ea8d28ac user: stephan tags: json) | |
11:48 | compile fix for mingw (thanks to Robert Engelhardt). ... (check-in: 58d41564 user: stephan tags: json) | |
2011-09-15
| ||
12:03 | initial mass-change merge of main repo with my fork. ... (check-in: 5b44a419 user: stephan tags: json) | |
Changes
Changes to src/cson_amalgamation.h.
︙ | ︙ | |||
78 79 80 81 82 83 84 | */ #if !defined(CSON_VOID_PTR_IS_BIG) /* Largely taken from http://predef.sourceforge.net/prearch.html See also: http://poshlib.hookatooka.com/poshlib/trac.cgi/browser/posh.h */ | | | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | */ #if !defined(CSON_VOID_PTR_IS_BIG) /* Largely taken from http://predef.sourceforge.net/prearch.html See also: http://poshlib.hookatooka.com/poshlib/trac.cgi/browser/posh.h */ # if defined(_WIN64) || defined(__LP64__)/*gcc*/ \ || defined(_M_X64) || defined(__amd64__) || defined(__amd64) \ || defined(__x86_64__) || defined(__x86_64) \ || defined(__ia64__) || defined(__ia64) || defined(_IA64) || defined(__IA64__) \ || defined(_M_IA64) \ || defined(__sparc_v9__) || defined(__sparcv9) || defined(_ADDR64) \ || defined(__64BIT__) # define CSON_VOID_PTR_IS_BIG 1 |
︙ | ︙ |