qca: fix gcc6 build
This commit is contained in:
parent
d2d88eec15
commit
ff2dd1c62c
2 changed files with 52 additions and 1 deletions
51
srcpkgs/qca/patches/narrowing.patch
Normal file
51
srcpkgs/qca/patches/narrowing.patch
Normal file
|
@ -0,0 +1,51 @@
|
|||
--- src/qca_textfilter.cpp 2014-11-06 09:15:45.000000000 +0100
|
||||
+++ src/qca_textfilter.cpp 2017-01-25 05:19:43.948129764 +0100
|
||||
@@ -289,29 +289,31 @@
|
||||
|
||||
static QByteArray b64decode(const QByteArray &s, bool *ok)
|
||||
{
|
||||
- // -1 specifies invalid
|
||||
+#define _I '\xff'
|
||||
+ // _I specifies invalid
|
||||
// 64 specifies eof
|
||||
// everything else specifies data
|
||||
|
||||
static char tbl[] =
|
||||
{
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,
|
||||
- 52,53,54,55,56,57,58,59,60,61,-1,-1,-1,64,-1,-1,
|
||||
- -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,
|
||||
- 15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,
|
||||
- -1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,
|
||||
- 41,42,43,44,45,46,47,48,49,50,51,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
- -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,62,_I,_I,_I,63,
|
||||
+ 52,53,54,55,56,57,58,59,60,61,_I,_I,_I,64,_I,_I,
|
||||
+ _I, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,
|
||||
+ 15,16,17,18,19,20,21,22,23,24,25,_I,_I,_I,_I,_I,
|
||||
+ _I,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,
|
||||
+ 41,42,43,44,45,46,47,48,49,50,51,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
+ _I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,_I,
|
||||
};
|
||||
+#undef _I
|
||||
|
||||
// return value
|
||||
QByteArray p;
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'qca'
|
||||
pkgname=qca
|
||||
version=2.1.0
|
||||
revision=9
|
||||
revision=10
|
||||
build_style=cmake
|
||||
configure_args="-DBUILD_TESTS=0 -DQC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt
|
||||
-DQCA_FEATURE_INSTALL_DIR=/usr/share/qca/mkspecs -DWITH_ossl_PLUGIN=yes"
|
||||
|
|
Loading…
Reference in a new issue