Blame view

buildroot/buildroot-2016.08.1/package/rtorrent/0001-cross_compile.patch 2.02 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  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]
  
  Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
  ---
   configure.ac      |    1 -
   scripts/checks.m4 |    2 +-
   scripts/common.m4 |    4 ++--
   3 files changed, 3 insertions(+), 4 deletions(-)
  
  diff --git a/configure.ac b/configure.ac
  index ba5bbf2..0821d4e 100644
  --- a/configure.ac
  +++ b/configure.ac
  @@ -4,7 +4,6 @@ AC_DEFINE(API_VERSION, 9, api version)
   
   AM_INIT_AUTOMAKE
   AC_CONFIG_HEADERS(config.h)
  -AM_PATH_CPPUNIT(1.9.6)
   
   AC_PROG_CXX
   AC_PROG_LIBTOOL
  diff --git a/scripts/checks.m4 b/scripts/checks.m4
  index 598f39b..0e5abe0 100644
  --- 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
  index 5127624..cc68269 100644
  --- a/scripts/common.m4
  +++ b/scripts/common.m4
  @@ -223,7 +223,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_LINK_IFELSE([AC_LANG_SOURCE([
         #include <execinfo.h>
         int main() { backtrace((void**)0, 0); backtrace_symbols((char**)0, 0); return 0;}
         ])],
  @@ -238,7 +238,7 @@ AC_DEFUN([TORRENT_CHECK_EXECINFO], [
   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 };
  -- 
  1.7.1