diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2014-11-17 03:32:00 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-25 13:03:25 +0000 |
commit | 89108b49a7bc3ab883d4b9fcdc3bd7992fb0a6fe (patch) | |
tree | 7f5a20d061b42f4aff7739bbe26729200aca8710 /meta/recipes-support/serf/serf_1.3.8.bb | |
parent | 322ba17fd841cac4db8a4740d1fd74a2a9468f90 (diff) | |
download | poky-89108b49a7bc3ab883d4b9fcdc3bd7992fb0a6fe.tar.gz |
serf: 1.3.6 -> 1.3.8
Release changes:
Serf 1.3.8 [2014-10-20, from /tags/1.3.8, rxxxx]
Fix issue #152: CRC calculation error for gzipped http reponses > 4GB.
Fix issue #153: SSPI CredHandle not freed when APR pool is destroyed.
Fix issue #154: Disable SSLv2 and SSLv3 as both or broken.
Serf 1.3.7 [2014-08-11, from /tags/1.3.7, r2411]
Handle NUL bytes in fields of an X.509 certificate. (r2393, r2399)
- CVE-2014-3504: (Closes: #757965)
(From OE-Core rev: ff02b0e2f1d1798555187b8cd5e6fd447ba57380)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/serf/serf_1.3.8.bb')
-rw-r--r-- | meta/recipes-support/serf/serf_1.3.8.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-support/serf/serf_1.3.8.bb b/meta/recipes-support/serf/serf_1.3.8.bb new file mode 100644 index 0000000000..10db122da9 --- /dev/null +++ b/meta/recipes-support/serf/serf_1.3.8.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | |||
2 | SRC_URI = "http://serf.googlecode.com/svn/src_releases/serf-${PV}.tar.bz2 \ | ||
3 | file://norpath.patch" | ||
4 | SRC_URI[md5sum] = "2e4efe57ff28cb3202a112e90f0c2889" | ||
5 | SRC_URI[sha256sum] = "e0500be065dbbce490449837bb2ab624e46d64fc0b090474d9acaa87c82b2590" | ||
6 | |||
7 | LICENSE = "Apache-2.0" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" | ||
9 | |||
10 | DEPENDS = "python-scons-native openssl apr apr-util util-linux expat" | ||
11 | |||
12 | FULLCC = "${STAGING_BINDIR_TOOLCHAIN}/${CC}" | ||
13 | FULLCC_class-native = "${CC}" | ||
14 | |||
15 | do_compile() { | ||
16 | ${STAGING_BINDIR_NATIVE}/scons ${PARALLEL_MAKE} PREFIX=${prefix} \ | ||
17 | CC="${FULLCC}" \ | ||
18 | APR=`which apr-1-config` APU=`which apu-1-config` \ | ||
19 | CFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" \ | ||
20 | OPENSSL="${STAGING_EXECPREFIXDIR}" | ||
21 | } | ||
22 | |||
23 | do_install() { | ||
24 | ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} LIBDIR=${D}${libdir} install | ||
25 | } | ||
26 | |||
27 | BBCLASSEXTEND = "native" | ||