Blame view

buildroot/buildroot-2016.08.1/package/expect/0001-enable-cross-compilation.patch 2.53 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  From: Andrew Ruder <andrew.ruder@elecsyscorp.com>
  Subject: [PATCH] enable cross compilation for expect
  
  This patch was created by running ./configure on a modern Linux machine
  and inserting the results into the cross compilation section of
  each AC_MSG_CHECKING that bombed out with an error.
  
  Signed-off-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
  ---
  
  Index: expect-5.45/configure.in
  ===================================================================
  --- expect-5.45.orig/configure.in	2013-11-14 07:59:58.732100595 -0600
  +++ expect-5.45/configure.in	2013-11-14 07:59:58.732100595 -0600
  @@ -481,7 +481,7 @@
   ,
   	AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(no)
   )
   
   AC_MSG_CHECKING([if any value exists for WNOHANG])
  @@ -506,7 +506,8 @@
   	AC_MSG_RESULT(no)
   	AC_DEFINE(WNOHANG_BACKUP_VALUE, 1)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(yes)
  +	AC_DEFINE(WNOHANG_BACKUP_VALUE, 1)
   )
   
   #
  @@ -574,7 +575,7 @@
   	AC_DEFINE(REARM_SIG)
   ,
   	AC_MSG_RESULT(no)
  -, AC_MSG_WARN([Expect can't be cross compiled])
  +, AC_MSG_RESULT(no)
   )
   
   # HPUX7 has trouble with the big cat so split it
  @@ -725,7 +726,7 @@
   ,
           AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(no)
   )
   
   # mach systems have include files for unimplemented features
  @@ -749,7 +750,9 @@
   ,
           AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +    AC_DEFINE(HAVE_TERMIO)
  +    PTY_TYPE=termios
  +	AC_MSG_RESULT(yes)
   )
   
     # now check for the new style ttys (not yet posix)
  @@ -771,7 +774,9 @@
     ,
           AC_MSG_RESULT(no)
     ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +        AC_DEFINE(HAVE_TERMIOS)
  +        PTY_TYPE=termios
  +        AC_MSG_RESULT(yes)
     )
   fi
   
  @@ -794,7 +799,7 @@
   ,
   	AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(no)
   )
   
   AC_MSG_CHECKING([if TIOCGWINSZ in termios.h])
  @@ -816,7 +821,7 @@
   ,
   	AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(no)
   )
   
   # finally check for Cray style ttys
  @@ -837,7 +842,7 @@
   ,
   	AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(no)
   )
   
   #
  @@ -869,7 +874,9 @@
   AC_HAVE_FUNCS(getpty)
   
   # following test sets SETPGRP_VOID if setpgrp takes 0 args, else takes 2
  -AC_FUNC_SETPGRP
  +cat >>expect_cf.h <<\_ACEOF
  +#define SETPGRP_VOID 1
  +_ACEOF
   
   #
   # check for timezones
  @@ -889,7 +896,7 @@
   	AC_MSG_RESULT(yes),
   	AC_MSG_RESULT(no)
   ,
  -	AC_MSG_ERROR([Expect can't be cross compiled])
  +	AC_MSG_RESULT(yes)
   )