Browse Source

* added libc
* added log

peter 25 years ago
parent
commit
5a091c96ab
1 changed files with 14 additions and 0 deletions
  1. 14 0
      packages/zlib/zlib.pp

+ 14 - 0
packages/zlib/zlib.pp

@@ -1,9 +1,16 @@
+{
+  $Id$
+}
 unit zlib;
 
 interface
 
 { Needed for array of const }
 {$mode objfpc}
+{ for linux for linking with libc }
+{$ifdef linux}
+  {$linklib c}
+{$endif}
 {$PACKRECORDS 4}
 
 const
@@ -168,3 +175,10 @@ function zError(err:longint):string;
   end;
 
 end.
+{
+  $Log$
+  Revision 1.6  2000-01-18 21:53:56  peter
+    * added libc
+    * added log
+
+}