diff options
author | Stephen Shkardoon <ss23@ss23.geek.nz> | 2018-06-30 16:09:03 +1200 |
---|---|---|
committer | Jason Zaman <perfinion@gentoo.org> | 2018-07-03 13:57:02 +0800 |
commit | 02114366f60e28c528b8f94c5a5f27ac25b5d3c9 (patch) | |
tree | 43ae5075f432521c01fc1971e1d99fd0de6d0f0c /net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch | |
parent | dev-ruby/pdf-core: add ruby25 (diff) | |
download | gentoo-02114366f60e28c528b8f94c5a5f27ac25b5d3c9.tar.gz gentoo-02114366f60e28c528b8f94c5a5f27ac25b5d3c9.tar.bz2 gentoo-02114366f60e28c528b8f94c5a5f27ac25b5d3c9.zip |
net-p2p/rtorrent: Patch configure to allow cross compiling
Patch already merged upstream
https://github.com/rakshasa/rtorrent/pull/753
Closes: https://bugs.gentoo.org/show_bug.cgi?id=446186
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch')
-rw-r--r-- | net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch b/net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch new file mode 100644 index 000000000000..2c7ce5222b80 --- /dev/null +++ b/net-p2p/rtorrent/files/rtorrent-0.9.7-execinfo-configure.patch @@ -0,0 +1,23 @@ +From f84670dd6394729158569a7a5366a00a7d1dccb2 Mon Sep 17 00:00:00 2001 +From: Stephen Shkardoon <ss23@ss23.geek.nz> +Date: Mon, 25 Jun 2018 20:14:43 +1200 +Subject: [PATCH] Use AC_COMPILE instead of AC_RUN to check for execinfo.h + +This way enables cross compiling, since we don't need to run anything during the configure script. +--- + scripts/common.m4 | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/scripts/common.m4 b/scripts/common.m4 +index 9885b037..b1b815b1 100644 +--- a/scripts/common.m4 ++++ b/scripts/common.m4 +@@ -153,7 +153,7 @@ dnl Need to fix this so that it uses the stuff defined by the system. + AC_DEFUN([TORRENT_CHECK_EXECINFO], [ + AC_MSG_CHECKING(for execinfo.h) + +- AC_RUN_IFELSE([AC_LANG_SOURCE([ ++ AC_COMPILE_IFELSE([AC_LANG_SOURCE([ + #include <execinfo.h> + int main() { backtrace((void**)0, 0); backtrace_symbols((char**)0, 0); return 0;} + ])], |