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:
Andrew Gwozdziewycz 2019-08-02 01:56:51 -07:00
parent a8680bb0b4
commit ac467ea314

12
sexp.c
View file

@ -464,6 +464,18 @@ static const char* sexp_initial_features[] = {
#if SEXP_BSD #if SEXP_BSD
"bsd", "bsd",
#endif #endif
#if defined(__OpenBSD__)
"openbsd",
#endif
#if defined(__FreeBSD__)
"freebsd",
#endif
#if defined(__NetBSD__)
"netbsd",
#endif
#if defined(__DragonFly__)
"dragonfly",
#endif
#if defined(_WIN32) #if defined(_WIN32)
"windows", "windows",
#endif #endif