2015-10-05 01:56:16 +02:00
|
|
|
From d62f7474289970d5be3fd658dd6ace4489408bdf Mon Sep 17 00:00:00 2001
|
|
|
|
From: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
|
|
|
Date: Mon, 5 Oct 2015 00:52:26 +0100
|
|
|
|
Subject: [PATCH] Fix cross compilation, based on OpenWRT patch.
|
|
|
|
|
|
|
|
[Vincent: tweak the patch for version 0.9.6]
|
2018-08-21 23:39:49 +02:00
|
|
|
[Bernd: tweak the patch for version 0.9.7]
|
2012-05-14 12:55:29 +02:00
|
|
|
|
|
|
|
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
2015-10-05 01:56:16 +02:00
|
|
|
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
2018-08-21 23:39:49 +02:00
|
|
|
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
2015-10-05 01:56:16 +02:00
|
|
|
---
|
2018-08-21 23:39:49 +02:00
|
|
|
scripts/checks.m4 | 2 +-
|
|
|
|
scripts/common.m4 | 4 ++--
|
|
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
2012-05-14 12:55:29 +02:00
|
|
|
|
2015-10-05 01:56:16 +02:00
|
|
|
diff --git a/scripts/checks.m4 b/scripts/checks.m4
|
2018-08-21 23:39:49 +02:00
|
|
|
index 8d77fc5..c446995 100644
|
2015-10-05 01:56:16 +02:00
|
|
|
--- a/scripts/checks.m4
|
|
|
|
+++ b/scripts/checks.m4
|
|
|
|
@@ -96,7 +96,7 @@ AC_DEFUN([TORRENT_CHECK_KQUEUE], [
|
|
|
|
AC_DEFUN([TORRENT_CHECK_KQUEUE_SOCKET_ONLY], [
|
|
|
|
AC_MSG_CHECKING(whether kqueue supports pipes and ptys)
|
|
|
|
|
|
|
|
- AC_RUN_IFELSE([AC_LANG_SOURCE([
|
|
|
|
+ AC_LINK_IFELSE([AC_LANG_SOURCE([
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
diff --git a/scripts/common.m4 b/scripts/common.m4
|
2018-08-21 23:39:49 +02:00
|
|
|
index 9885b03..a0af7e7 100644
|
2015-10-05 01:56:16 +02:00
|
|
|
--- a/scripts/common.m4
|
|
|
|
+++ b/scripts/common.m4
|
2018-08-21 23:39:49 +02:00
|
|
|
@@ -153,7 +153,7 @@ dnl Need to fix this so that it uses the stuff defined by the system.
|
2012-05-14 12:55:29 +02:00
|
|
|
AC_DEFUN([TORRENT_CHECK_EXECINFO], [
|
|
|
|
AC_MSG_CHECKING(for execinfo.h)
|
|
|
|
|
|
|
|
- AC_RUN_IFELSE([AC_LANG_SOURCE([
|
|
|
|
+ AC_LINK_IFELSE([AC_LANG_SOURCE([
|
|
|
|
#include <execinfo.h>
|
|
|
|
int main() { backtrace((void**)0, 0); backtrace_symbols((char**)0, 0); return 0;}
|
|
|
|
])],
|
2018-08-21 23:39:49 +02:00
|
|
|
@@ -168,7 +168,7 @@ AC_DEFUN([TORRENT_CHECK_EXECINFO], [
|
2015-10-05 01:56:16 +02:00
|
|
|
AC_DEFUN([TORRENT_CHECK_ALIGNED], [
|
|
|
|
AC_MSG_CHECKING(the byte alignment)
|
|
|
|
|
|
|
|
- AC_RUN_IFELSE([AC_LANG_SOURCE([
|
|
|
|
+ AC_LINK_IFELSE([AC_LANG_SOURCE([
|
|
|
|
#include <inttypes.h>
|
|
|
|
int main() {
|
|
|
|
char buf@<:@8@:>@ = { 0, 0, 0, 0, 1, 0, 0, 0 };
|
|
|
|
--
|
2018-08-21 23:39:49 +02:00
|
|
|
2.18.0
|
2015-10-05 01:56:16 +02:00
|
|
|
|