mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
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:
parent
801fa1696b
commit
31ca73d58d
11 changed files with 88 additions and 10 deletions
|
@ -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.");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue