Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Apr 2010 20:07:24 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r206709 - head/lib/libz
Message-ID:  <201004162007.o3GK7Omt031578@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Fri Apr 16 20:07:24 2010
New Revision: 206709
URL: http://svn.freebsd.org/changeset/base/206709

Log:
  Expose a few symbols as public interface rather than private.
  
  Note: the *64 interfaces are no longer exposed via zlib.h but were keep
  as public interfaces;
  
  Note 2: this commit would break applications that uses the moved symbols
  directly.

Modified:
  head/lib/libz/Symbol.map

Modified: head/lib/libz/Symbol.map
==============================================================================
--- head/lib/libz/Symbol.map	Fri Apr 16 20:04:45 2010	(r206708)
+++ head/lib/libz/Symbol.map	Fri Apr 16 20:07:24 2010	(r206709)
@@ -4,11 +4,13 @@
 
 ZLIB_1.2.4.0 {
 	adler32;
+	adler32_combine;
 	adler32_combine64;
 	compress;
 	compress2;
 	compressBound;
 	crc32;
+	crc32_combine;
 	crc32_combine64;
 	deflate;
 	deflateBound;
@@ -35,15 +37,19 @@ ZLIB_1.2.4.0 {
 	gzflush;
 	gzgetc;
 	gzgets;
+	gzoffset;
 	gzoffset64;
+	gzopen;
 	gzopen64;
 	gzprintf;
 	gzputc;
 	gzputs;
 	gzread;
 	gzrewind;
+	gzseek;
 	gzseek64;
 	gzsetparams;
+	gztell;
 	gztell64;
 	gzungetc;
 	gzwrite;
@@ -80,13 +86,7 @@ ZLIBprivate_1.0 {
 	_tr_init;
 	_tr_stored_block;
 	_tr_tally;
-	adler32_combine;
-	crc32_combine;
 	gz_error;
-	gzoffset;
-	gzopen;
-	gzseek;
-	gztell;
 	inflate_fast;
 	inflate_table;
 	longest_match;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004162007.o3GK7Omt031578>