* modified: mingw-w64-mupdf/001-makerules-search-system-libraries.patch * modified: mingw-w64-mupdf/002-makerules-fix-gl-libraries.patch Adapted for new version. * new file: mingw-w64-mupdf/003-makerules-fix-inline-error.patch Add missing MSSE4.1 cflag for non-clang build. * new file: mingw-w64-mupdf/004-gl-main-no-msc-ver-no-warning.patch Hack: remove MSV_VER macro. Remove warning for gl build. * new file: mingw-w64-mupdf/005-win32-build-rules.patch Add win32 build rules back. * new file: mingw-w64-mupdf/006-makefile-shared-build.patch Build shared library. * new file: mingw-w64-mupdf/007-cpp-binding-build-fix.patch Fix C++ binding export. * new file: mingw-w64-mupdf/008-python-binding-build-fix.patch Fix python binding export. * new file: mingw-w64-mupdf/009-makefile-install-target.patch Uncoupling install targets. * new file: mingw-w64-mupdf/010-fix_build_with_clang21.patch Fix 1.26.10 release clang c++ binding generation. * modified: mingw-w64-mupdf/PKGBUILD Update to version 1.26.10. Add new package python-mupdf, needed by new version of python-pymupdf. * new file: mingw-w64-mupdf/mupdf.pc Add pkg-config file. * modified: mingw-w64-python-pymupdf/0001-pymupdf-add-mingw-setup.patch Adapted for new version. * modified: mingw-w64-python-pymupdf/PKGBUILD Update to version 1.26.5.
12 lines
214 B
Diff
12 lines
214 B
Diff
--- a/Makerules
|
|
+++ b/Makerules
|
|
@@ -375,3 +375,7 @@
|
|
HAVE_LIBCRYPTO=no
|
|
CFLAGS += -pthread
|
|
endif
|
|
+
|
|
+ifeq ($(OS),$(filter $(OS),Linux MINGW Windows_NT))
|
|
+ CFLAGS += -msse4.1
|
|
+endif
|
|
\ No newline at end of file
|