Correct include path for zlib
authorStefan Vogel <sv@exept.de>
Wed, 17 Jan 2007 14:47:40 +0100
changeset 1836 e9e1ba3735c6
parent 1835 f52844a8546d
child 1837 b035cf13fb00
Correct include path for zlib
ZipStream.st
--- a/ZipStream.st	Wed Jan 17 14:41:48 2007 +0100
+++ b/ZipStream.st	Wed Jan 17 14:47:40 2007 +0100
@@ -27,8 +27,8 @@
  * includes, defines, structure definitions
  * and typedefs come here.
  */
-#include "zlib/zlib.h"
-#include "zlib/zutil.h"
+#include "zlib.h"
+#include "zutil.h"
 
 typedef enum {
 	  e_opmode_unspecified          /* processing done */
@@ -713,7 +713,7 @@
 !ZipStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/ZipStream.st,v 1.26 2007-01-16 16:21:51 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/ZipStream.st,v 1.27 2007-01-17 13:47:40 stefan Exp $'
 ! !
 
 ZipStream initialize!