-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apache2 bash-completion boost box64 box86 doxygen e2fsprogs gettext libaom libcurl libdrm libedit libelf libflac libgnutls libice libicu liblzma libnettle libnghttp2 libpam libpixman libpng libsecret libsm libsqlite libtool libtpms libuv libwayland-protocols libx11 libxau libxkbcommon libxml2 libxrender libxshmfence libxt libxxf86vm openssl pcre2 python zstd python-pip
- Loading branch information
Showing
51 changed files
with
269 additions
and
221 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
19 changes: 0 additions & 19 deletions
19
gpkg/boost/boost-process-detail-posix-shell_path.hpp.patch
This file was deleted.
Oops, something went wrong.
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 @@ | ||
From e7433ba54596da97cb7859455cd37ca140305a9c Mon Sep 17 00:00:00 2001 | ||
From: Peter Dimov <[email protected]> | ||
Date: Mon, 13 Jan 2025 16:13:04 +0200 | ||
Subject: [PATCH] Fix operator<< for shared_ptr and intrusive_ptr. Fixes #115. | ||
--- a/boost/smart_ptr/intrusive_ptr.hpp | ||
+++ b/boost/smart_ptr/intrusive_ptr.hpp | ||
@@ -285,7 +285,7 @@ template<class T, class U> intrusive_ptr<T> dynamic_pointer_cast( intrusive_ptr< | ||
|
||
// operator<< | ||
|
||
-template<class Y> std::ostream & operator<< (std::ostream & os, intrusive_ptr<Y> const & p) | ||
+template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::basic_ostream<E, T> & os, intrusive_ptr<Y> const & p) | ||
{ | ||
os << p.get(); | ||
return os; | ||
--- a/boost/smart_ptr/shared_ptr.hpp | ||
+++ b/boost/smart_ptr/shared_ptr.hpp | ||
@@ -775,7 +775,7 @@ template<class T> inline typename shared_ptr<T>::element_type * get_pointer(shar | ||
|
||
// operator<< | ||
|
||
-template<class Y> std::ostream & operator<< (std::ostream & os, shared_ptr<Y> const & p) | ||
+template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::basic_ostream<E, T> & os, shared_ptr<Y> const & p) | ||
{ | ||
os << p.get(); | ||
return os; |
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,18 @@ | ||
--- src/boost/process/v1/detail/posix/shell_path.hpp 2024-12-05 03:53:35.000000000 +0300 | ||
+++ src/boost/process/v1/detail/posix/shell_path.hpp.patch 2025-03-05 14:02:47.847495863 +0300 | ||
@@ -18,13 +18,13 @@ | ||
|
||
inline boost::process::v1::filesystem::path shell_path() | ||
{ | ||
- return "/bin/sh"; | ||
+ return "@TERMUX_PREFIX@/bin/sh"; | ||
} | ||
|
||
inline boost::process::v1::filesystem::path shell_path(std::error_code &ec) | ||
{ | ||
ec.clear(); | ||
- return "/bin/sh"; | ||
+ return "@TERMUX_PREFIX@/bin/sh"; | ||
} | ||
|
||
}}}}} |
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
Oops, something went wrong.