Skip to content

Commit

Permalink
Merge pull request #1 from radarhere/fix_build_macos
Browse files Browse the repository at this point in the history
Renamed zip header file
  • Loading branch information
PeterPetrik committed Aug 31, 2020
2 parents ef88be6 + 799b25d commit 00dede5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ PyImaging_XbmDecoderNew(PyObject* self, PyObject* args)

#ifdef HAVE_LIBZ

#include "ZipState.h"
#include "ZipCodecs.h"

PyObject*
PyImaging_ZipDecoderNew(PyObject* self, PyObject* args)
Expand Down
2 changes: 1 addition & 1 deletion src/encode.c
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ PyImaging_XbmEncoderNew(PyObject* self, PyObject* args)

#ifdef HAVE_LIBZ

#include "ZipState.h"
#include "ZipCodecs.h"

PyObject*
PyImaging_ZipEncoderNew(PyObject* self, PyObject* args)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/libImaging/ZipDecode.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#ifdef HAVE_LIBZ

#include "ZipState.h"
#include "ZipCodecs.h"

static const int OFFSET[] = { 7, 3, 3, 1, 1, 0, 0 };
static const int STARTING_COL[] = { 0, 4, 0, 2, 0, 1, 0 };
Expand Down
2 changes: 1 addition & 1 deletion src/libImaging/ZipEncode.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#ifdef HAVE_LIBZ

#include "ZipState.h"
#include "ZipCodecs.h"

int
ImagingZipEncode(Imaging im, ImagingCodecState state, UINT8* buf, int bytes)
Expand Down

0 comments on commit 00dede5

Please sign in to comment.