aboutsummaryrefslogtreecommitdiff
path: root/depends/patches/zeromq/remove_libstd_link.patch
diff options
context:
space:
mode:
authorsabotagebeats <[email protected]>2021-06-02 16:07:10 -0700
committersabotagebeats <[email protected]>2021-07-18 15:06:51 -0700
commit36bde0efca8784b8c2f44b3d02ab641e4e205ce8 (patch)
treececf205c9909e8cad7008af9d5ecde9e523dd5d4 /depends/patches/zeromq/remove_libstd_link.patch
parentMerge pull request #2410 from patricklodder/1.14.4-explicit-gui-ci (diff)
downloadarchived-discoin-36bde0efca8784b8c2f44b3d02ab641e4e205ce8.tar.xz
archived-discoin-36bde0efca8784b8c2f44b3d02ab641e4e205ce8.zip
Utils and libraries: Update ZMQ to 4.3.4
Diffstat (limited to 'depends/patches/zeromq/remove_libstd_link.patch')
-rw-r--r--depends/patches/zeromq/remove_libstd_link.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/depends/patches/zeromq/remove_libstd_link.patch b/depends/patches/zeromq/remove_libstd_link.patch
new file mode 100644
index 000000000..ddf91e6ab
--- /dev/null
+++ b/depends/patches/zeromq/remove_libstd_link.patch
@@ -0,0 +1,25 @@
+commit 47d4cd12a2c051815ddda78adebdb3923b260d8a
+Author: fanquake <[email protected]>
+Date: Tue Aug 18 14:45:40 2020 +0800
+
+ Remove needless linking against libstdc++
+
+ This is broken for a number of reasons, including:
+ - g++ understands "static-libstdc++ -lstdc++" to mean "link against
+ whatever libstdc++ exists, probably shared", which in itself is buggy.
+ - another stdlib (libc++ for example) may be in use
+
+ See #11981.
+
+diff --git a/src/libzmq.pc.in b/src/libzmq.pc.in
+index 233bc3a..3c2bf0d 100644
+--- a/src/libzmq.pc.in
++++ b/src/libzmq.pc.in
+@@ -7,6 +7,6 @@ Name: libzmq
+ Description: 0MQ c++ library
+ Version: @VERSION@
+ Libs: -L${libdir} -lzmq
+-Libs.private: -lstdc++ @pkg_config_libs_private@
++Libs.private: @pkg_config_libs_private@
+ Requires.private: @pkg_config_names_private@
+ Cflags: -I${includedir} @pkg_config_defines@