Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jk_botti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ds
jk_botti
Commits
3ab8c3bc
Commit
3ab8c3bc
authored
Jan 27, 2013
by
Jussi Kivilinna
Browse files
Options
Downloads
Patches
Plain Diff
Change zlib prefixes
Signed-off-by:
Jussi Kivilinna
<
jussi.kivilinna@mbnet.fi
>
parent
a61a3b68
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
zlib/ChangeLog
+1
-0
1 addition, 0 deletions
zlib/ChangeLog
zlib/zconf.h
+43
-43
43 additions, 43 deletions
zlib/zconf.h
zlib/zconf.in.h
+43
-43
43 additions, 43 deletions
zlib/zconf.in.h
with
87 additions
and
86 deletions
zlib/ChangeLog
+
1
−
0
View file @
3ab8c3bc
jk_botti changes:
Tweaked compiling to work with jk_botti sources/makefile. Changes to use
assembler version of match function.
Changed the Z_PREFIXes z_* to jkbotti_*
ChangeLog file for zlib
...
...
This diff is collapsed.
Click to expand it.
zlib/zconf.h
+
43
−
43
View file @
3ab8c3bc
...
...
@@ -13,50 +13,50 @@
* compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
*/
#ifdef Z_PREFIX
# define deflateInit_
z
_deflateInit_
# define deflate
z
_deflate
# define deflateEnd
z
_deflateEnd
# define inflateInit_
z
_inflateInit_
# define inflate
z
_inflate
# define inflateEnd
z
_inflateEnd
# define deflateInit2_
z
_deflateInit2_
# define deflateSetDictionary
z
_deflateSetDictionary
# define deflateCopy
z
_deflateCopy
# define deflateReset
z
_deflateReset
# define deflateParams
z
_deflateParams
# define deflateBound
z
_deflateBound
# define deflatePrime
z
_deflatePrime
# define inflateInit2_
z
_inflateInit2_
# define inflateSetDictionary
z
_inflateSetDictionary
# define inflateSync
z
_inflateSync
# define inflateSyncPoint
z
_inflateSyncPoint
# define inflateCopy
z
_inflateCopy
# define inflateReset
z
_inflateReset
# define inflateBack
z
_inflateBack
# define inflateBackEnd
z
_inflateBackEnd
# define compress
z
_compress
# define compress2
z
_compress2
# define compressBound
z
_compressBound
# define uncompress
z
_uncompress
# define adler32
z
_adler32
# define crc32
z
_crc32
# define get_crc_table
z
_get_crc_table
# define zError
z
_zError
# define deflateInit_
jkbotti
_deflateInit_
# define deflate
jkbotti
_deflate
# define deflateEnd
jkbotti
_deflateEnd
# define inflateInit_
jkbotti
_inflateInit_
# define inflate
jkbotti
_inflate
# define inflateEnd
jkbotti
_inflateEnd
# define deflateInit2_
jkbotti
_deflateInit2_
# define deflateSetDictionary
jkbotti
_deflateSetDictionary
# define deflateCopy
jkbotti
_deflateCopy
# define deflateReset
jkbotti
_deflateReset
# define deflateParams
jkbotti
_deflateParams
# define deflateBound
jkbotti
_deflateBound
# define deflatePrime
jkbotti
_deflatePrime
# define inflateInit2_
jkbotti
_inflateInit2_
# define inflateSetDictionary
jkbotti
_inflateSetDictionary
# define inflateSync
jkbotti
_inflateSync
# define inflateSyncPoint
jkbotti
_inflateSyncPoint
# define inflateCopy
jkbotti
_inflateCopy
# define inflateReset
jkbotti
_inflateReset
# define inflateBack
jkbotti
_inflateBack
# define inflateBackEnd
jkbotti
_inflateBackEnd
# define compress
jkbotti
_compress
# define compress2
jkbotti
_compress2
# define compressBound
jkbotti
_compressBound
# define uncompress
jkbotti
_uncompress
# define adler32
jkbotti
_adler32
# define crc32
jkbotti
_crc32
# define get_crc_table
jkbotti
_get_crc_table
# define zError
jkbotti
_zError
# define alloc_func
z
_alloc_func
# define free_func
z
_free_func
# define in_func
z
_in_func
# define out_func
z
_out_func
# define Byte
z
_Byte
# define uInt
z
_uInt
# define uLong
z
_uLong
# define Bytef
z
_Bytef
# define charf
z
_charf
# define intf
z
_intf
# define uIntf
z
_uIntf
# define uLongf
z
_uLongf
# define voidpf
z
_voidpf
# define voidp
z
_voidp
# define alloc_func
jkbotti
_alloc_func
# define free_func
jkbotti
_free_func
# define in_func
jkbotti
_in_func
# define out_func
jkbotti
_out_func
# define Byte
jkbotti
_Byte
# define uInt
jkbotti
_uInt
# define uLong
jkbotti
_uLong
# define Bytef
jkbotti
_Bytef
# define charf
jkbotti
_charf
# define intf
jkbotti
_intf
# define uIntf
jkbotti
_uIntf
# define uLongf
jkbotti
_uLongf
# define voidpf
jkbotti
_voidpf
# define voidp
jkbotti
_voidp
#endif
#if defined(__MSDOS__) && !defined(MSDOS)
...
...
This diff is collapsed.
Click to expand it.
zlib/zconf.in.h
+
43
−
43
View file @
3ab8c3bc
...
...
@@ -13,50 +13,50 @@
* compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
*/
#ifdef Z_PREFIX
# define deflateInit_
z
_deflateInit_
# define deflate
z
_deflate
# define deflateEnd
z
_deflateEnd
# define inflateInit_
z
_inflateInit_
# define inflate
z
_inflate
# define inflateEnd
z
_inflateEnd
# define deflateInit2_
z
_deflateInit2_
# define deflateSetDictionary
z
_deflateSetDictionary
# define deflateCopy
z
_deflateCopy
# define deflateReset
z
_deflateReset
# define deflateParams
z
_deflateParams
# define deflateBound
z
_deflateBound
# define deflatePrime
z
_deflatePrime
# define inflateInit2_
z
_inflateInit2_
# define inflateSetDictionary
z
_inflateSetDictionary
# define inflateSync
z
_inflateSync
# define inflateSyncPoint
z
_inflateSyncPoint
# define inflateCopy
z
_inflateCopy
# define inflateReset
z
_inflateReset
# define inflateBack
z
_inflateBack
# define inflateBackEnd
z
_inflateBackEnd
# define compress
z
_compress
# define compress2
z
_compress2
# define compressBound
z
_compressBound
# define uncompress
z
_uncompress
# define adler32
z
_adler32
# define crc32
z
_crc32
# define get_crc_table
z
_get_crc_table
# define zError
z
_zError
# define deflateInit_
jkbotti
_deflateInit_
# define deflate
jkbotti
_deflate
# define deflateEnd
jkbotti
_deflateEnd
# define inflateInit_
jkbotti
_inflateInit_
# define inflate
jkbotti
_inflate
# define inflateEnd
jkbotti
_inflateEnd
# define deflateInit2_
jkbotti
_deflateInit2_
# define deflateSetDictionary
jkbotti
_deflateSetDictionary
# define deflateCopy
jkbotti
_deflateCopy
# define deflateReset
jkbotti
_deflateReset
# define deflateParams
jkbotti
_deflateParams
# define deflateBound
jkbotti
_deflateBound
# define deflatePrime
jkbotti
_deflatePrime
# define inflateInit2_
jkbotti
_inflateInit2_
# define inflateSetDictionary
jkbotti
_inflateSetDictionary
# define inflateSync
jkbotti
_inflateSync
# define inflateSyncPoint
jkbotti
_inflateSyncPoint
# define inflateCopy
jkbotti
_inflateCopy
# define inflateReset
jkbotti
_inflateReset
# define inflateBack
jkbotti
_inflateBack
# define inflateBackEnd
jkbotti
_inflateBackEnd
# define compress
jkbotti
_compress
# define compress2
jkbotti
_compress2
# define compressBound
jkbotti
_compressBound
# define uncompress
jkbotti
_uncompress
# define adler32
jkbotti
_adler32
# define crc32
jkbotti
_crc32
# define get_crc_table
jkbotti
_get_crc_table
# define zError
jkbotti
_zError
# define alloc_func
z
_alloc_func
# define free_func
z
_free_func
# define in_func
z
_in_func
# define out_func
z
_out_func
# define Byte
z
_Byte
# define uInt
z
_uInt
# define uLong
z
_uLong
# define Bytef
z
_Bytef
# define charf
z
_charf
# define intf
z
_intf
# define uIntf
z
_uIntf
# define uLongf
z
_uLongf
# define voidpf
z
_voidpf
# define voidp
z
_voidp
# define alloc_func
jkbotti
_alloc_func
# define free_func
jkbotti
_free_func
# define in_func
jkbotti
_in_func
# define out_func
jkbotti
_out_func
# define Byte
jkbotti
_Byte
# define uInt
jkbotti
_uInt
# define uLong
jkbotti
_uLong
# define Bytef
jkbotti
_Bytef
# define charf
jkbotti
_charf
# define intf
jkbotti
_intf
# define uIntf
jkbotti
_uIntf
# define uLongf
jkbotti
_uLongf
# define voidpf
jkbotti
_voidpf
# define voidp
jkbotti
_voidp
#endif
#if defined(__MSDOS__) && !defined(MSDOS)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment