diff options
Diffstat (limited to 'meta-networking/recipes-netkit/netkit-telnet/files/cross-compile.patch')
-rw-r--r-- | meta-networking/recipes-netkit/netkit-telnet/files/cross-compile.patch | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-networking/recipes-netkit/netkit-telnet/files/cross-compile.patch b/meta-networking/recipes-netkit/netkit-telnet/files/cross-compile.patch new file mode 100644 index 0000000000..b3fe36b7bb --- /dev/null +++ b/meta-networking/recipes-netkit/netkit-telnet/files/cross-compile.patch | |||
@@ -0,0 +1,48 @@ | |||
1 | To support the cross-compile | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | make the configure to support the cross-compile, by only to compile the | ||
6 | target, and not to run it | ||
7 | |||
8 | Roy Li <rongqing.li@windriver.com> | ||
9 | Index: netkit-telnet-0.17/configure | ||
10 | =================================================================== | ||
11 | --- netkit-telnet-0.17.orig/configure 2008-11-23 22:01:26.000000000 +0100 | ||
12 | +++ netkit-telnet-0.17/configure 2008-11-23 22:05:00.000000000 +0100 | ||
13 | @@ -94,7 +94,7 @@ | ||
14 | echo -n 'Checking if C compiler works... ' | ||
15 | if ( | ||
16 | $CC __conftest.c -o __conftest || exit 1 | ||
17 | - ./__conftest || exit 1 | ||
18 | + # Idiots belong shot! ./__conftest || exit 1 | ||
19 | ) >/dev/null 2>&1; then | ||
20 | echo 'yes' | ||
21 | else | ||
22 | @@ -141,7 +141,7 @@ | ||
23 | echo -n 'Checking if C++ compiler works... ' | ||
24 | if ( | ||
25 | $CXX __conftest.cc -o __conftest || exit 1 | ||
26 | - ./__conftest || exit 1 | ||
27 | + # Iditios belong shot! ./__conftest || exit 1 | ||
28 | ) >/dev/null 2>&1; then | ||
29 | echo 'yes' | ||
30 | else | ||
31 | @@ -284,7 +284,7 @@ | ||
32 | else | ||
33 | if ( | ||
34 | $CXX $CXXFLAGS -D__USE_BSD_SIGNAL __conftest.cc -o __conftest || exit 1 | ||
35 | - ./__conftest || exit 1 | ||
36 | + # running still does not work./__conftest || exit 1 | ||
37 | ) >/dev/null 2>&1; then | ||
38 | echo '-D__USE_BSD_SIGNAL' | ||
39 | CFLAGS="$CFLAGS -D__USE_BSD_SIGNAL" | ||
40 | @@ -501,7 +501,7 @@ | ||
41 | EOF | ||
42 | if ( | ||
43 | $CXX $CXXFLAGS __conftest.cc $LIBBSD -o __conftest || exit 1 | ||
44 | - ./__conftest || exit 1 | ||
45 | + # argh! morons!./__conftest || exit 1 | ||
46 | ) >/dev/null 2>&1; then | ||
47 | echo 'ok' | ||
48 | else | ||