mirror of
https://github.com/janet-lang/janet
synced 2024-12-25 07:50:27 +00:00
commit
0601d851d0
@ -115,6 +115,11 @@ gmake test
|
|||||||
gmake repl
|
gmake repl
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### NetBSD
|
||||||
|
|
||||||
|
NetBSD build instructions are the same as the FreeBSD build instuctions.
|
||||||
|
Alternatively, install directly from packages, using `pkgin install janet`.
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|
||||||
1. Install [Visual Studio](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community&rel=15#) or [Visual Studio Build Tools](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools&rel=15#)
|
1. Install [Visual Studio](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community&rel=15#) or [Visual Studio Build Tools](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools&rel=15#)
|
||||||
|
@ -38,4 +38,11 @@
|
|||||||
#define _XOPEN_SOURCE 500
|
#define _XOPEN_SOURCE 500
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Needed for timegm and other extensions when building with -std=c99.
|
||||||
|
* It also defines realpath, etc, which would normally require
|
||||||
|
* _XOPEN_SOURCE >= 500. */
|
||||||
|
#if !defined(_NETBSD_SOURCE) && defined(__NetBSD__)
|
||||||
|
#define _NETBSD_SOURCE
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user