diff options
author | Pacho Ramos <pacho@gentoo.org> | 2023-11-24 14:28:47 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-11-24 14:54:03 +0100 |
commit | 0c2c6b0a8fc4b07454c6fd034b0993da6aa87149 (patch) | |
tree | 9f42d8eaa22d020d8c109880b731faf624eabf5a /games-util/dfarc/files | |
parent | games-emulation/ryujinx: add myself as a maintainer (diff) | |
download | gentoo-0c2c6b0a8fc4b07454c6fd034b0993da6aa87149.tar.gz gentoo-0c2c6b0a8fc4b07454c6fd034b0993da6aa87149.tar.bz2 gentoo-0c2c6b0a8fc4b07454c6fd034b0993da6aa87149.zip |
games-util/dfarc: Port to wxGTK 3.2
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'games-util/dfarc/files')
-rw-r--r-- | games-util/dfarc/files/dfarc-3.14-wxString.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/games-util/dfarc/files/dfarc-3.14-wxString.patch b/games-util/dfarc/files/dfarc-3.14-wxString.patch new file mode 100644 index 000000000000..9eb7bd3ddffe --- /dev/null +++ b/games-util/dfarc/files/dfarc-3.14-wxString.patch @@ -0,0 +1,12 @@ +diff -Nur dfarc-3.14/src/Tar.cpp new/src/Tar.cpp +--- dfarc-3.14/src/Tar.cpp 2018-06-05 23:18:34.000000000 +0200 ++++ new/src/Tar.cpp 2019-02-02 02:41:40.128841786 +0100 +@@ -610,7 +610,7 @@ + if (lLastCharacter != '\\' && lLastCharacter != '/') + { + // Open the file. +- std::ostream* lStreamOut = ostream_open_unicode(lCurrentFilePath); ++ std::ostream* lStreamOut = ostream_open_unicode(lCurrentFilePath.mb_str()); + if (!lStreamOut->good()) + { + wxLogError(_("Error: Improperly archived file '%s'. Skipping."), lCurrentFilePath); |