mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
Merge pull request #556 from katterjohn/bsd-detection
Fix NetBSD, DragonFly BSD and Darwin feature detection
This commit is contained in:
commit
56acd0eb56
1 changed files with 1 additions and 3 deletions
|
@ -323,14 +323,12 @@
|
|||
#define SEXP_NETBSD 1
|
||||
#define SEXP_DRAGONFLY 0
|
||||
#define SEXP_OPENBSD 0
|
||||
#define SEXP_NETBSD 0
|
||||
#elif defined(__DragonFly__)
|
||||
#define SEXP_DARWIN 1
|
||||
#define SEXP_DARWIN 0
|
||||
#define SEXP_FREEBSD 0
|
||||
#define SEXP_NETBSD 0
|
||||
#define SEXP_DRAGONFLY 1
|
||||
#define SEXP_OPENBSD 0
|
||||
#define SEXP_DRAGONFLY 0
|
||||
#elif defined(__OpenBSD__)
|
||||
#define SEXP_DARWIN 0
|
||||
#define SEXP_FREEBSD 0
|
||||
|
|
Loading…
Add table
Reference in a new issue