The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / wvstreams / 0003-fix-uClibc-compile-misc.patch
1 Fix wvstreams so that it builds with uClibc: const cast problem.
2
3 Signed-off-by: Simon Dawson <spdawson@gmail.com>
4
5 diff -Nurp a/crypto/wvx509.cc b/crypto/wvx509.cc
6 --- a/crypto/wvx509.cc  2008-10-23 21:23:49.000000000 +0100
7 +++ b/crypto/wvx509.cc  2012-06-15 18:45:06.605899292 +0100
8 @@ -1157,7 +1157,7 @@ WvString WvX509::get_extension(int nid)
9          
10          if (ext)
11          {
12 -            X509V3_EXT_METHOD *method = X509V3_EXT_get(ext);
13 +          X509V3_EXT_METHOD *method = const_cast<X509V3_EXT_METHOD *>(X509V3_EXT_get(ext));
14              if (!method)
15              {
16                  WvDynBuf buf;