gzip: Fix aarch64 build

This commit is contained in:
Fredrik Fornwall 2016-01-03 19:46:43 -05:00
parent c5421c5824
commit c64a0461b9
1 changed files with 31 additions and 0 deletions

31
packages/gzip/zip.c.patch Normal file
View File

@ -0,0 +1,31 @@
Re-ordering the headers in the below patch fixes aarch64
compilation, due to gzip.h defining
# define head (prev+WSIZE)
and <asm/sigcontext.h> using
struct fpsimd_context {
struct _aarch64_ctx head;
/* ... */
}
diff -u -r ../gzip-1.6/zip.c ./zip.c
--- ../gzip-1.6/zip.c 2013-02-01 23:39:13.000000000 -0500
+++ ./zip.c 2016-01-03 19:37:00.603075562 -0500
@@ -20,12 +20,12 @@
#include <config.h>
#include <ctype.h>
-#include "tailor.h"
-#include "gzip.h"
-
#include <unistd.h>
#include <fcntl.h>
+#include "tailor.h"
+#include "gzip.h"
+
local ulg crc; /* crc on uncompressed file data */
off_t header_bytes; /* number of bytes in gzip header */