mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 10:42:36 +03:00
Fix atari mint duktape build
This commit is contained in:
parent
f51b7780e3
commit
c2bd86ca96
@ -95,6 +95,11 @@
|
|||||||
#define DUK_F_BSD
|
#define DUK_F_BSD
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Atari Mint */
|
||||||
|
#if defined(__MINT__)
|
||||||
|
#define DUK_F_MINT
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Atari ST TOS. __TOS__ defined by PureC. No platform define in VBCC
|
/* Atari ST TOS. __TOS__ defined by PureC. No platform define in VBCC
|
||||||
* apparently, so to use with VBCC user must define __TOS__ manually.
|
* apparently, so to use with VBCC user must define __TOS__ manually.
|
||||||
*/
|
*/
|
||||||
@ -2091,6 +2096,8 @@ typedef FILE duk_file;
|
|||||||
/* uclibc may be missing these */
|
/* uclibc may be missing these */
|
||||||
#elif defined(DUK_F_AMIGAOS) && defined(DUK_F_VBCC)
|
#elif defined(DUK_F_AMIGAOS) && defined(DUK_F_VBCC)
|
||||||
/* vbcc + AmigaOS may be missing these */
|
/* vbcc + AmigaOS may be missing these */
|
||||||
|
#elif defined(DUK_F_MINT)
|
||||||
|
/* mint clib is missing these*/
|
||||||
#elif !defined(DUK_F_C99) && !defined(DUK_F_CPP11)
|
#elif !defined(DUK_F_C99) && !defined(DUK_F_CPP11)
|
||||||
/* build is not C99 or C++11, play it safe */
|
/* build is not C99 or C++11, play it safe */
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user