-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update GLib to 2.63.4. - Update librsvg to 2.47.2. - Update libwebp to 1.1.0. - Update ImageMagick to 6.9.10-87. - Update libde265 to 1.0.5. MXE Updates: - Update SQLite to 3.30.1.
- Loading branch information
Showing
11 changed files
with
83 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
This file is part of MXE. See LICENSE.md for licensing information. | ||
|
||
Contains ad hoc patches for cross building. | ||
|
||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Kleis Auke Wolthuizen <[email protected]> | ||
Date: Sat, 25 Jan 2020 17:30:00 +0100 | ||
Subject: [PATCH 1/1] Use the mutex helper from mingw-std-threads | ||
|
||
|
||
diff --git a/libde265/de265.cc b/libde265/de265.cc | ||
index 1111111..2222222 100644 | ||
--- a/libde265/de265.cc | ||
+++ b/libde265/de265.cc | ||
@@ -31,7 +31,11 @@ | ||
#include <assert.h> | ||
#include <string.h> | ||
#include <stdlib.h> | ||
+#ifdef _WIN32 | ||
+#include "mingw.mutex.h" | ||
+#else | ||
#include <mutex> | ||
+#endif | ||
|
||
|
||
// TODO: should be in some vps.c related header |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
## TODO | ||
- [ ] Let Travis build libvips with pre-compiled dependencies. | ||
- [ ] Wait for: https://github.com/mxe/mxe/issues/2021. | ||
- [ ] Wait for: [mxe/mxe#2021](https://github.com/mxe/mxe/issues/2021). | ||
- [ ] Incorporate all new dependencies and patches into [MXE](https://github.com/mxe/mxe). | ||
- [ ] Should we also add libvips-web? | ||
- [ ] Not sure about `librsvg`, because v2.42.0+ requires the Rust toolchain. | ||
- [ ] Try to test the binaries with the Python test suite on Wine. | ||
- [ ] Incorporate the llvm-mingw toolchain plugin into MXE (see [mxe/mxe#2330](https://github.com/mxe/mxe/issues/2330)). | ||
- [ ] Test the `armv7-w64-mingw32` and `aarch64-w64-mingw32` targets. Perhaps there's a VM to test these architectures? | ||
- [ ] Build LLVM for the target architecture (`-DLLVM_TARGETS_TO_BUILD=`) instead of constantly building all four architectures (i686, x86_64, armv7 and arm64). | ||
- [ ] [`libffi`](8.9/libffi-3-fixes.patch), [`openslide`](8.9/openslide-3-fixes.patch) ([mstorsjo/llvm-mingw#67](https://github.com/mstorsjo/llvm-mingw/issues/67)), [`hdf5`](8.9/hdf5-1-fixes.patch) and [`glib`](8.9/glib-2-fixes.patch) needs llvm-mingw specific patches. Fix them upstream or within LLVM. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters