File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ install:
40
40
- " $PIP install cibuildwheel==0.10.0"
41
41
- mkdir mupdf && wget -q $MUPDF -O - | tar zx -C mupdf --strip-components=1
42
42
- cp fitz/_mupdf_config.h mupdf/include/mupdf/fitz/config.h
43
- - cp fitz/_pdf-device.c mupdf/source/pdf/pdf-device.c
44
- - cp fitz/_error.c mupdf/source/fitz/error.c
45
43
script :
46
44
- export CIBW_SKIP="cp33-* *i686"
47
45
- export CIBW_TEST_COMMAND="python -c 'import fitz'"
Original file line number Diff line number Diff line change 22
22
module = Extension ('fitz._fitz' , # name of the module
23
23
['fitz/fitz_wrap.c' ], # C source file
24
24
# this are directories containing mupdf's and zlib's header files
25
- include_dirs = ['/usr/local/include/mupdf' , '/usr/local/include' ],
25
+ include_dirs = ['/usr/local/include/mupdf' ,
26
+ '/usr/local/include' ,
27
+ '/usr/local/thirdparty/zlib' ],
26
28
library_dirs = ['/usr/local/lib' ],
27
29
libraries = ['mupdf' , 'mupdf-third' ]
28
30
)
You can’t perform that action at this time.
0 commit comments