forked from KomodoPlatform/komodo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request KomodoPlatform#559 from Asherda/release-v1.1.2
Release v1.1.2
- Loading branch information
Showing
35 changed files
with
832 additions
and
1,089 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 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
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,68 @@ | ||
diff --git a/include/boost/concept/detail/general.hpp b/include/boost/concept/detail/general.hpp | ||
index eeb08750..8d7d6f69 100644 | ||
--- a/include/boost/concept/detail/general.hpp | ||
+++ b/include/boost/concept/detail/general.hpp | ||
@@ -28,7 +28,14 @@ namespace detail | ||
template <class Model> | ||
struct requirement | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
static void failed() { ((Model*)0)->~Model(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
struct failed {}; | ||
@@ -36,7 +43,14 @@ struct failed {}; | ||
template <class Model> | ||
struct requirement<failed ************ Model::************> | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
static void failed() { ((Model*)0)->~Model(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
# ifdef BOOST_OLD_CONCEPT_SUPPORT | ||
@@ -44,7 +58,14 @@ struct requirement<failed ************ Model::************> | ||
template <class Model> | ||
struct constraint | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
static void failed() { ((Model*)0)->constraints(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
template <class Model> | ||
diff --git a/include/boost/concept/usage.hpp b/include/boost/concept/usage.hpp | ||
index 373de63a..fe88b5f5 100644 | ||
--- a/include/boost/concept/usage.hpp | ||
+++ b/include/boost/concept/usage.hpp | ||
@@ -13,7 +13,14 @@ namespace boost { namespace concepts { | ||
template <class Model> | ||
struct usage_requirements | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
~usage_requirements() { ((Model*)0)->~Model(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
# if BOOST_WORKAROUND(__GNUC__, <= 3) |
15 changes: 15 additions & 0 deletions
15
depends/patches/libevent/0001-fix-windows-getaddrinfo.patch
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,15 @@ | ||
diff -ur libevent-2.1.8-stable.orig/configure.ac libevent-2.1.8-stable/configure.ac | ||
--- libevent-2.1.8-stable.orig/configure.ac 2017-01-29 17:51:00.000000000 +0000 | ||
+++ libevent-2.1.8-stable/configure.ac 2020-03-07 01:11:16.311335005 +0000 | ||
@@ -389,6 +389,10 @@ | ||
#ifdef HAVE_NETDB_H | ||
#include <netdb.h> | ||
#endif | ||
+#ifdef _WIN32 | ||
+#include <winsock2.h> | ||
+#include <ws2tcpip.h> | ||
+#endif | ||
]], | ||
[[ | ||
getaddrinfo; | ||
Only in libevent-2.1.8-stable: configure.ac~ |
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,5 +1,5 @@ | ||
|
||
VerusCoin Command Line Tools v1.1.1-13 | ||
VerusCoin Command Line Tools v1.1.2 | ||
|
||
Contents: | ||
verusd - VerusCoin daemon | ||
|
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,5 +1,5 @@ | ||
|
||
VerusCoin Command Line Tools v1.1.1-13 | ||
VerusCoin Command Line Tools v1.1.2 | ||
|
||
Contents: | ||
verusd - VerusCoin daemon. | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.