qca-tls: removed port (obsolete and there are no dependent ports)

This commit is contained in:
Jose V Beneyto 2013-11-01 13:58:03 +01:00
parent a4f84be4e7
commit e2eb04c543
4 changed files with 0 additions and 44 deletions

View File

@ -1,5 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/qt/
drwxr-xr-x root/root usr/lib/qt/crypto/
-rwxr-xr-x root/root usr/lib/qt/crypto/libqca-tls.so

View File

@ -1,2 +0,0 @@
84fcb78bccb31ec1e76815e795b1a4b3 qca-fix.patch
886b1f60fc31de3b1a0bd93281e27b73 qca-tls-1.0.tar.bz2

View File

@ -1,17 +0,0 @@
# Description: TLS plugin for the Qt Crypto API
# URL: http://delta.affinix.com/qca/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: qca, openssl
name=qca-tls
version=1.0
release=1
source=(http://delta.affinix.com/download/qca/$name-$version.tar.bz2 qca-fix.patch)
build() {
cd ${name}-${version}
patch -p1 < $SRC/qca-fix.patch
./configure
make
install -m 755 -D libqca-tls.so $PKG/usr/lib/qt/crypto/libqca-tls.so
}

View File

@ -1,20 +0,0 @@
--- qca-tls-1.0/qca-tls.cpp.orig 2007-12-01 17:56:17.060155571 -0400
+++ qca-tls-1.0/qca-tls.cpp 2007-12-01 17:57:37.169934323 -0400
@@ -454,7 +454,7 @@
if(!r) {
// try this other public function, for whatever reason
p = (void *)in;
- r = d2i_RSA_PUBKEY(NULL, (unsigned char **)&p, len);
+ r = d2i_RSA_PUBKEY(NULL, (const unsigned char **)&p, len);
}
if(r) {
if(pub) {
@@ -798,7 +798,7 @@
bool createFromDER(const char *in, unsigned int len)
{
- unsigned char *p = (unsigned char *)in;
+ const unsigned char *p = (unsigned char *)in;
X509 *t = d2i_X509(NULL, &p, len);
if(!t)
return false;