Thread overview
MinTL availability
Sep 25, 2006
Andrew Bainbridge
Nov 28, 2006
Endea
Dec 05, 2006
Paul Findlay
May 28, 2007
Bill Baxter
September 25, 2006
Anyone know where I can get hold of MinTL these days?

Thanks,
Andrew
November 28, 2006
Andrew Bainbridge kirjoitti:
> Anyone know where I can get hold of MinTL these days?
> 
> Thanks,
> Andrew

It MinTL available or updated anymore? The page that http://www.digitalmars.com/d/dlinks.html links does not exist.
December 05, 2006
> Anyone know where I can get hold of MinTL these days?
I have put the 2.7.1 version (worked with DMD 0.129?) up at:
http://findlay.net.nz/paul/mintl.zip

Cheers,

- Paul
May 28, 2007
Paul Findlay wrote:
>> Anyone know where I can get hold of MinTL these days?
> I have put the 2.7.1 version (worked with DMD 0.129?) up at:
> http://findlay.net.nz/paul/mintl.zip

Here's a version that compiles with the latest DMD:
Let's call it 2.7.2.

I just did the minimal to get it to compile.
* Added .ptr's here and there.
* The import of std.vararg in share.d needed to be made public so the mixin will work.
* In mem.c compiler was conflicted over two definitions of malloc.  I added fully-qualified names as I thought matched the intent of the code. (Looks like it was trying to do non-gc allocs there, so I prefixed with std.c.stdlib).

The unittests pass at least.

Uploaded to http://www.billbaxter.com/projects/d/mintl-2.7.2.zip

--bb