meta-tizen: neard: move recipe and patches to the proper dir
[scm/bb/tizen-distro.git] / meta-tizen / meta-tizen-adaptation / meta-oe / recipes-connectivity / connman / connman / 0001-Add-bootstrap-files.patch
1 From 79fe33b1a73f42592ac98c44b87dc15b52c7d791 Mon Sep 17 00:00:00 2001
2 From: Zhang zhengguang <zhengguang.zhang@intel.com>
3 Date: Fri, 11 Jul 2014 09:34:05 +0800
4 Subject: [PATCH 01/32] Add bootstrap files
5
6 Change-Id: Ia3923cb1ff35e7bfbd4e45f13dd18af15ed89f56
7 ---
8  bootstrap           |  7 +++++++
9  bootstrap-configure | 20 ++++++++++++++++++++
10  2 files changed, 27 insertions(+)
11  create mode 100755 bootstrap
12  create mode 100755 bootstrap-configure
13
14 diff --git a/bootstrap b/bootstrap
15 new file mode 100755
16 index 0000000..0dd71d9
17 --- /dev/null
18 +++ b/bootstrap
19 @@ -0,0 +1,7 @@
20 +#!/bin/sh
21 +
22 +aclocal && \
23 +    autoheader && \
24 +        libtoolize --automake --copy --force && \
25 +           automake --add-missing --copy && \
26 +               autoconf
27 diff --git a/bootstrap-configure b/bootstrap-configure
28 new file mode 100755
29 index 0000000..070c676
30 --- /dev/null
31 +++ b/bootstrap-configure
32 @@ -0,0 +1,20 @@
33 +#!/bin/sh
34 +
35 +if [ -f config.status ]; then
36 +       make maintainer-clean
37 +fi
38 +
39 +./bootstrap && \
40 +    ./configure --enable-maintainer-mode \
41 +               --enable-debug \
42 +               --prefix=/usr \
43 +               --mandir=/usr/share/man \
44 +               --localstatedir=/var \
45 +               --sysconfdir=/etc \
46 +               --disable-datafiles \
47 +               --enable-openconnect=builtin \
48 +               --enable-openvpn=builtin \
49 +               --enable-vpnc=builtin \
50 +               --enable-session-policy-local=builtin \
51 +               --enable-nmcompat \
52 +               --enable-polkit $*
53 -- 
54 1.8.1.4
55