Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
unique-xids
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
unique-xids
Commits
149fde92
Commit
149fde92
authored
Mar 28, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to solve the 32/64 bit issue with a less draconian #ifdef,
this looks like it helps PPC64 platform.
parent
ec66fc07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vgz.h
lib/libvgz/vgz.h
+2
-2
No files found.
lib/libvgz/vgz.h
View file @
149fde92
...
@@ -1575,14 +1575,14 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
...
@@ -1575,14 +1575,14 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
ZEXTERN
uLong
ZEXPORT
crc32_combine64
OF
((
uLong
,
uLong
,
z_off64_t
));
ZEXTERN
uLong
ZEXPORT
crc32_combine64
OF
((
uLong
,
uLong
,
z_off64_t
));
#endif
#endif
#if
defined(NOTDEF) &&
!defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0
#if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0
# define gzopen gzopen64
# define gzopen gzopen64
# define gzseek gzseek64
# define gzseek gzseek64
# define gztell gztell64
# define gztell gztell64
# define gzoffset gzoffset64
# define gzoffset gzoffset64
# define adler32_combine adler32_combine64
# define adler32_combine adler32_combine64
# define crc32_combine crc32_combine64
# define crc32_combine crc32_combine64
# ifdef _LARGEFILE64_SOURCE
# ifdef _LARGEFILE64_SOURCE
xxx
ZEXTERN
gzFile
ZEXPORT
gzopen64
OF
((
const
char
*
,
const
char
*
));
ZEXTERN
gzFile
ZEXPORT
gzopen64
OF
((
const
char
*
,
const
char
*
));
ZEXTERN
z_off_t
ZEXPORT
gzseek64
OF
((
gzFile
,
z_off_t
,
int
));
ZEXTERN
z_off_t
ZEXPORT
gzseek64
OF
((
gzFile
,
z_off_t
,
int
));
ZEXTERN
z_off_t
ZEXPORT
gztell64
OF
((
gzFile
));
ZEXTERN
z_off_t
ZEXPORT
gztell64
OF
((
gzFile
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment