mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
fix _LARGEFILE64_SOURCE in zlib
svn path=/nixpkgs/trunk/; revision=30307
This commit is contained in:
parent
ddcce29b18
commit
f5a2998c03
2 changed files with 16 additions and 0 deletions
|
@ -8,6 +8,8 @@ stdenv.mkDerivation (rec {
|
|||
sha256 = "0n7rlgvjn73pyil3s1l6p77m7wkc809n934rnzxv1b1za4pfar30";
|
||||
};
|
||||
|
||||
patches = [ ./zlib-LARGEFILE64_SOURCE.patch ];
|
||||
|
||||
configureFlags = if static then "" else "--shared";
|
||||
|
||||
preConfigure = ''
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
Fix compilation with _LARGEFILE64_SOURCE
|
||||
|
||||
diff -ur zlib-1.2.5.orig/zlib.h zlib-1.2.5/zlib.h
|
||||
--- zlib-1.2.5.orig/zlib.h 2010-04-20 06:12:48.000000000 +0200
|
||||
+++ zlib-1.2.5/zlib.h 2010-09-27 21:20:27.398694997 +0200
|
||||
@@ -1578,7 +1578,7 @@
|
||||
# define gzoffset gzoffset64
|
||||
# define adler32_combine adler32_combine64
|
||||
# define crc32_combine crc32_combine64
|
||||
-# ifdef _LARGEFILE64_SOURCE
|
||||
+# ifndef _LARGEFILE64_SOURCE
|
||||
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 gztell64 OF((gzFile));
|
Loading…
Reference in a new issue