Ticket #20 (closed defect: fixed)

Opened 2 years ago

Last modified 1 year ago

gdc 0.23 branch 2.1 compilation fix

Reported by: Paolo Invernizzi Assigned to:
Priority: trivial Milestone:
Component: mango.sys Version:
Keywords: Cc:

Description

With gdc 0.23 darwin was removed in favor of posix

Index: mango/sys/OS.d =================================================================== --- mango/sys/OS.d (revision 954) +++ mango/sys/OS.d (working copy) @@ -69,8 +69,8 @@

version (darwin)

{

- public import std.c.darwin.darwin; - alias std.c.darwin.darwin posix; + public import std.c.unix.unix; + alias std.c.unix.unix posix;

}

}

Change History

12/07/07 02:42:58 changed by kris

  • status changed from new to closed.
  • resolution set to fixed.