aboutsummaryrefslogtreecommitdiff
path: root/lib/libz
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libz')
-rw-r--r--lib/libz/ChangeLog2
-rw-r--r--lib/libz/Makefile2
-rw-r--r--lib/libz/adler32.c2
-rw-r--r--lib/libz/compress.c2
-rw-r--r--lib/libz/crc32.c2
-rw-r--r--lib/libz/deflate.c2
-rw-r--r--lib/libz/deflate.h2
-rw-r--r--lib/libz/example.c2
-rw-r--r--lib/libz/gzio.c2
-rw-r--r--lib/libz/minigzip.c2
-rw-r--r--lib/libz/trees.c2
-rw-r--r--lib/libz/uncompr.c2
-rw-r--r--lib/libz/zconf.h2
-rw-r--r--lib/libz/zutil.c2
-rw-r--r--lib/libz/zutil.h2
15 files changed, 15 insertions, 15 deletions
diff --git a/lib/libz/ChangeLog b/lib/libz/ChangeLog
index 95d3c3b8b2e0..8227cee0722e 100644
--- a/lib/libz/ChangeLog
+++ b/lib/libz/ChangeLog
@@ -148,7 +148,7 @@ Changes in 1.0.6 (19 Jan 1998)
- use _fdopen instead of fdopen for MSC >= 6.0 (Thomas Fanslau)
- added makelcc.bat for lcc-win32 (Tom St Denis)
- in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
-- Avoid expanded $Id$. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
+- Avoid expanded $Id: ChangeLog,v 1.1.1.1.2.1 1998/02/28 06:18:47 steve Exp $. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
- check for unistd.h in configure (for off_t)
- remove useless check parameter in inflate_blocks_free
- avoid useless assignment of s->check to itself in inflate_blocks_new
diff --git a/lib/libz/Makefile b/lib/libz/Makefile
index 8d076f37e74a..d11781fa9842 100644
--- a/lib/libz/Makefile
+++ b/lib/libz/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.3.2.2 1998/02/28 06:32:14 steve Exp $
+# $Id: Makefile,v 1.3.2.3 1998/07/19 06:51:50 jkh Exp $
#
MAINTAINER=peter@FreeBSD.org
diff --git a/lib/libz/adler32.c b/lib/libz/adler32.c
index b1f71ce05fe6..3b926cf1b7bb 100644
--- a/lib/libz/adler32.c
+++ b/lib/libz/adler32.c
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/adler32.c,v 1.1.1.1.2.1 1998/02/28 06:18:50 steve Exp $ */
#include "zlib.h"
diff --git a/lib/libz/compress.c b/lib/libz/compress.c
index 31c51e611659..9140a21d8f08 100644
--- a/lib/libz/compress.c
+++ b/lib/libz/compress.c
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/compress.c,v 1.1.1.1.2.1 1998/02/28 06:18:54 steve Exp $ */
#include "zlib.h"
diff --git a/lib/libz/crc32.c b/lib/libz/crc32.c
index 2e98580b0b95..d1ef72614d38 100644
--- a/lib/libz/crc32.c
+++ b/lib/libz/crc32.c
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/crc32.c,v 1.1.1.1.2.1 1998/02/28 06:18:55 steve Exp $ */
#include "zlib.h"
diff --git a/lib/libz/deflate.c b/lib/libz/deflate.c
index dc8c76c51372..0c8031187a55 100644
--- a/lib/libz/deflate.c
+++ b/lib/libz/deflate.c
@@ -47,7 +47,7 @@
*
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/deflate.c,v 1.1.1.1.2.1 1998/02/28 06:18:56 steve Exp $ */
#include "deflate.h"
diff --git a/lib/libz/deflate.h b/lib/libz/deflate.h
index 5cf65ec89f1e..c86e6b3d5653 100644
--- a/lib/libz/deflate.h
+++ b/lib/libz/deflate.h
@@ -8,7 +8,7 @@
subject to change. Applications should only use zlib.h.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/deflate.h,v 1.1.1.1.2.1 1998/02/28 06:18:57 steve Exp $ */
#ifndef _DEFLATE_H
#define _DEFLATE_H
diff --git a/lib/libz/example.c b/lib/libz/example.c
index e313c552d581..6f065f9318d5 100644
--- a/lib/libz/example.c
+++ b/lib/libz/example.c
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/example.c,v 1.1.1.1.2.1 1998/02/28 06:18:58 steve Exp $ */
#include <stdio.h>
#include "zlib.h"
diff --git a/lib/libz/gzio.c b/lib/libz/gzio.c
index e3782d582712..03cbaba25094 100644
--- a/lib/libz/gzio.c
+++ b/lib/libz/gzio.c
@@ -5,7 +5,7 @@
* Compile this file with -DNO_DEFLATE to avoid the compression code.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/gzio.c,v 1.1.1.1.2.1 1998/02/28 06:18:58 steve Exp $ */
#include <stdio.h>
diff --git a/lib/libz/minigzip.c b/lib/libz/minigzip.c
index 7ba1666cbe4f..dbcdf85c8345 100644
--- a/lib/libz/minigzip.c
+++ b/lib/libz/minigzip.c
@@ -13,7 +13,7 @@
* or in pipe mode.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/minigzip.c,v 1.1.1.1.2.1 1998/02/28 06:19:07 steve Exp $ */
#include <stdio.h>
#include "zlib.h"
diff --git a/lib/libz/trees.c b/lib/libz/trees.c
index 2497001742d3..8c923081dedb 100644
--- a/lib/libz/trees.c
+++ b/lib/libz/trees.c
@@ -29,7 +29,7 @@
* Addison-Wesley, 1983. ISBN 0-201-06672-6.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/trees.c,v 1.1.1.1.2.1 1998/02/28 06:19:07 steve Exp $ */
/* #define GEN_TREES_H */
diff --git a/lib/libz/uncompr.c b/lib/libz/uncompr.c
index b1bd9fc41b0f..8d9f6ca84185 100644
--- a/lib/libz/uncompr.c
+++ b/lib/libz/uncompr.c
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/uncompr.c,v 1.1.1.1.2.1 1998/02/28 06:19:08 steve Exp $ */
#include "zlib.h"
diff --git a/lib/libz/zconf.h b/lib/libz/zconf.h
index 5b71e4b0ad42..8ac913fd8992 100644
--- a/lib/libz/zconf.h
+++ b/lib/libz/zconf.h
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/zconf.h,v 1.1.1.1.2.1 1998/02/28 06:19:09 steve Exp $ */
#ifndef _ZCONF_H
#define _ZCONF_H
diff --git a/lib/libz/zutil.c b/lib/libz/zutil.c
index 0d12b55d28b2..55ccbc72d661 100644
--- a/lib/libz/zutil.c
+++ b/lib/libz/zutil.c
@@ -3,7 +3,7 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/zutil.c,v 1.1.1.1.2.1 1998/02/28 06:19:11 steve Exp $ */
#include "zutil.h"
diff --git a/lib/libz/zutil.h b/lib/libz/zutil.h
index 3843e0de9f2f..8e16d85819cd 100644
--- a/lib/libz/zutil.h
+++ b/lib/libz/zutil.h
@@ -8,7 +8,7 @@
subject to change. Applications should only use zlib.h.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/lib/libz/zutil.h,v 1.1.1.1.2.1 1998/02/28 06:19:11 steve Exp $ */
#ifndef _Z_UTIL_H
#define _Z_UTIL_H