mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Add features for the various BSDs.
This could and should be done cleaner. Works as a proof of concept at this point in time.
This commit is contained in:
parent
a8680bb0b4
commit
ac467ea314
1 changed files with 12 additions and 0 deletions
12
sexp.c
12
sexp.c
|
@ -464,6 +464,18 @@ static const char* sexp_initial_features[] = {
|
|||
#if SEXP_BSD
|
||||
"bsd",
|
||||
#endif
|
||||
#if defined(__OpenBSD__)
|
||||
"openbsd",
|
||||
#endif
|
||||
#if defined(__FreeBSD__)
|
||||
"freebsd",
|
||||
#endif
|
||||
#if defined(__NetBSD__)
|
||||
"netbsd",
|
||||
#endif
|
||||
#if defined(__DragonFly__)
|
||||
"dragonfly",
|
||||
#endif
|
||||
#if defined(_WIN32)
|
||||
"windows",
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue