summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support
diff options
context:
space:
mode:
authorJoe Slater <jslater@windriver.com>2017-11-08 11:58:02 -0800
committerJoe MacDonald <joe_macdonald@mentor.com>2018-01-08 12:02:10 -0500
commit8a6978ae02e36b5bd328092209f03ca737201d95 (patch)
tree57d3fb50d6ad0a783b40cf7e14de44e25c08ec59 /meta-networking/recipes-support
parent36940f4a116799a9ef8486be690eee35f74f63d4 (diff)
downloadmeta-openembedded-8a6978ae02e36b5bd328092209f03ca737201d95.tar.gz
libtevent: update to version 0.99.33
Version needed to build samba 4.7.0. Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r--meta-networking/recipes-support/libtevent/libtevent/options-0.9.33.patch (renamed from meta-networking/recipes-support/libtevent/libtevent/tevent-Add-configure-options-for-packages.patch)28
-rw-r--r--meta-networking/recipes-support/libtevent/libtevent_0.9.33.bb (renamed from meta-networking/recipes-support/libtevent/libtevent_0.9.31.bb)6
2 files changed, 17 insertions, 17 deletions
diff --git a/meta-networking/recipes-support/libtevent/libtevent/tevent-Add-configure-options-for-packages.patch b/meta-networking/recipes-support/libtevent/libtevent/options-0.9.33.patch
index ddb8e4e23..84b1a3688 100644
--- a/meta-networking/recipes-support/libtevent/libtevent/tevent-Add-configure-options-for-packages.patch
+++ b/meta-networking/recipes-support/libtevent/libtevent/options-0.9.33.patch
@@ -14,6 +14,10 @@ Add configure options for the following packages:
14Upstream-Status: Inappropriate [oe deterministic build specific] 14Upstream-Status: Inappropriate [oe deterministic build specific]
15 15
16Signed-off-by: Jackie Huang <jackie.huang@windriver.com> 16Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
17
18Modified to apply to version 0.9.33.
19
20Signed-off-by: Joe Slater <joe.slater@windriver.com>
17--- 21---
18 lib/replace/system/wscript_configure | 6 ++- 22 lib/replace/system/wscript_configure | 6 ++-
19 lib/replace/wscript | 85 ++++++++++++++++++++++++++++-------- 23 lib/replace/wscript | 85 ++++++++++++++++++++++++++++--------
@@ -155,23 +159,19 @@ index fc43e1a..12d2a70 100644
155 159
156 conf.CHECK_CODE(''' 160 conf.CHECK_CODE('''
157 struct ucred cred; 161 struct ucred cred;
158diff --git a/wscript b/wscript
159old mode 100755
160new mode 100644
161index 71b9475..50793db
162--- a/wscript 162--- a/wscript
163+++ b/wscript 163+++ b/wscript
164@@ -26,7 +26,12 @@ def set_options(opt): 164@@ -22,7 +22,12 @@ def set_options(opt):
165 opt.add_option('--disable-python', 165 opt.PRIVATE_EXTENSION_DEFAULT('tevent', noextension='tevent')
166 help=("disable the pytevent module"), 166 opt.RECURSE('lib/replace')
167 action="store_true", dest='disable_python', default=False) 167 opt.RECURSE('lib/talloc')
168- 168-
169+ opt.add_option('--with-valgrind', 169+ opt.add_option('--with-valgrind',
170+ help=("enable use of valgrind"), 170+ help=("enable use of valgrind"),
171+ action="store_true", dest='enable_valgrind') 171+ action="store_true", dest='enable_valgrind')
172+ opt.add_option('--without-valgrind', 172+ opt.add_option('--without-valgrind',
173+ help=("disable use of valgrind"), 173+ help=("disable use of valgrind"),
174+ action="store_false", dest='enable_valgrind', default=False) 174+ action="store_false", dest='enable_valgrind', default=False)
175 175
176 def configure(conf): 176 def configure(conf):
177 conf.RECURSE('lib/replace') 177 conf.RECURSE('lib/replace')
diff --git a/meta-networking/recipes-support/libtevent/libtevent_0.9.31.bb b/meta-networking/recipes-support/libtevent/libtevent_0.9.33.bb
index ad711e730..f50830069 100644
--- a/meta-networking/recipes-support/libtevent/libtevent_0.9.31.bb
+++ b/meta-networking/recipes-support/libtevent/libtevent_0.9.33.bb
@@ -7,12 +7,12 @@ DEPENDS += "libtalloc"
7RDEPENDS_python-tevent = "python" 7RDEPENDS_python-tevent = "python"
8 8
9SRC_URI = "https://samba.org/ftp/tevent/tevent-${PV}.tar.gz \ 9SRC_URI = "https://samba.org/ftp/tevent/tevent-${PV}.tar.gz \
10 file://tevent-Add-configure-options-for-packages.patch \ 10 file://options-0.9.33.patch \
11" 11"
12LIC_FILES_CHKSUM = "file://tevent.h;endline=26;md5=4e458d658cb25e21efc16f720e78b85a" 12LIC_FILES_CHKSUM = "file://tevent.h;endline=26;md5=4e458d658cb25e21efc16f720e78b85a"
13 13
14SRC_URI[md5sum] = "5453847664ae6bc4ec0153e59ac635b9" 14SRC_URI[md5sum] = "527a43f35b4251e46f28921342895223"
15SRC_URI[sha256sum] = "4a13f2256ad804c860e84068258bd0f8be31cf0c79aa8f3019fa32f6928c2bfc" 15SRC_URI[sha256sum] = "22712ee981fd4298fcd5f3afb27d87a72257cebad37812cfbd3da5d968ed1bdc"
16 16
17inherit waf-samba 17inherit waf-samba
18 18