Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: third_party/zlib/zconf.h

Issue 8933001: Include "mozzconf.h". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/zlib/mozzconf.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* zconf.h -- configuration of the zlib compression library 1 /* zconf.h -- configuration of the zlib compression library
2 * Copyright (C) 1995-2010 Jean-loup Gailly. 2 * Copyright (C) 1995-2010 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
6 /* @(#) $Id$ */ 6 /* @(#) $Id$ */
7 7
8 #ifndef ZCONF_H 8 #ifndef ZCONF_H
9 #define ZCONF_H 9 #define ZCONF_H
10 10
11 /* This include does prefixing as below, but with an updated set of names */
12 #include "mozzconf.h"
13
11 /* 14 /*
12 * If you *really* need a unique prefix for all types and library functions, 15 * If you *really* need a unique prefix for all types and library functions,
13 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. 16 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
14 * Even better than compiling with -DZ_PREFIX would be to use configure to set 17 * Even better than compiling with -DZ_PREFIX would be to use configure to set
15 * this permanently in zconf.h using "./configure --zprefix". 18 * this permanently in zconf.h using "./configure --zprefix".
16 */ 19 */
17 #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ 20 #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */
18 21
19 /* all linked symbols */ 22 /* all linked symbols */
20 # define _dist_code z__dist_code 23 # define _dist_code z__dist_code
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 #pragma map(inflateEnd,"INEND") 422 #pragma map(inflateEnd,"INEND")
420 #pragma map(inflateSync,"INSY") 423 #pragma map(inflateSync,"INSY")
421 #pragma map(inflateSetDictionary,"INSEDI") 424 #pragma map(inflateSetDictionary,"INSEDI")
422 #pragma map(compressBound,"CMBND") 425 #pragma map(compressBound,"CMBND")
423 #pragma map(inflate_table,"INTABL") 426 #pragma map(inflate_table,"INTABL")
424 #pragma map(inflate_fast,"INFA") 427 #pragma map(inflate_fast,"INFA")
425 #pragma map(inflate_copyright,"INCOPY") 428 #pragma map(inflate_copyright,"INCOPY")
426 #endif 429 #endif
427 430
428 #endif /* ZCONF_H */ 431 #endif /* ZCONF_H */
OLDNEW
« no previous file with comments | « third_party/zlib/mozzconf.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698