# HG changeset patch # User Frank Benoit # Date 1215358499 -7200 # Node ID f6169caa2e0579db8d81c5e125f0c7b8c0454f14 # Parent 55591bc3974c91cbb6b00c7a09b9383fbf1c2f78 Fix: add pragma link for zlib on windows. diff -r 55591bc3974c -r f6169caa2e05 dwt/dwthelper/InflaterInputStream.d --- a/dwt/dwthelper/InflaterInputStream.d Sun Jul 06 17:26:06 2008 +0200 +++ b/dwt/dwthelper/InflaterInputStream.d Sun Jul 06 17:34:59 2008 +0200 @@ -7,6 +7,11 @@ import dwt.dwthelper.utils; import tango.io.Stdout; import tango.io.compress.ZlibStream; +version(Windows){ + version(build){ + pragma(link,"zlib"); + } +} version(TANGOSVN) { import tango.io.Conduit; }