Port of phobos to DragonFlyBSD

Notes:
- FIXME message related to dragonfly malloc issue (issue reported on upstream dragonfly issue database)
This commit is contained in:
Diederik de Groot 2017-12-11 16:27:41 +01:00
parent 801fa1696b
commit 31ca73d58d
No known key found for this signature in database
GPG key ID: AFA728250A1BECD6
11 changed files with 88 additions and 10 deletions

View file

@ -32,6 +32,7 @@ immutable
osx, /// Mac OS X
freeBSD, /// FreeBSD
netBSD, /// NetBSD
dragonFlyBSD, /// DragonFlyBSD
solaris, /// Solaris
android, /// Android
otherPosix /// Other Posix Systems
@ -45,6 +46,7 @@ immutable
else version(OSX) OS os = OS.osx;
else version(FreeBSD) OS os = OS.freeBSD;
else version(NetBSD) OS os = OS.netBSD;
else version(DragonFlyBSD) OS os = OS.dragonFlyBSD;
else version(Posix) OS os = OS.otherPosix;
else static assert(0, "Unknown OS.");