diff options
author | Slávek Banko <[email protected]> | 2020-01-06 19:41:48 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-02-04 18:34:36 +0100 |
commit | fa2cb167910bd9a801318b24a915733dae18c6e2 (patch) | |
tree | 674ca4e9491c089d6c189ffe2b8b50531af0035e /kopete/protocols/jabber/libiris/qca | |
parent | da681e86b1a185f6acb87e496d82c310095a7a6f (diff) | |
download | tdenetwork-fa2cb167910bd9a801318b24a915733dae18c6e2.tar.gz tdenetwork-fa2cb167910bd9a801318b24a915733dae18c6e2.zip |
kopete: Added ability to build with shared tqca library.
QCA files renamed to TQCA to match tqca library.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 1037d386233764a3fd46c8e18699c874520d6d9e)
Diffstat (limited to 'kopete/protocols/jabber/libiris/qca')
-rw-r--r-- | kopete/protocols/jabber/libiris/qca/src/CMakeLists.txt | 6 | ||||
-rw-r--r-- | kopete/protocols/jabber/libiris/qca/src/Makefile.am | 6 | ||||
-rw-r--r-- | kopete/protocols/jabber/libiris/qca/src/tqca.cpp (renamed from kopete/protocols/jabber/libiris/qca/src/qca.cpp) | 8 | ||||
-rw-r--r-- | kopete/protocols/jabber/libiris/qca/src/tqca.h (renamed from kopete/protocols/jabber/libiris/qca/src/qca.h) | 2 | ||||
-rw-r--r-- | kopete/protocols/jabber/libiris/qca/src/tqcaprovider.h (renamed from kopete/protocols/jabber/libiris/qca/src/qcaprovider.h) | 4 |
5 files changed, 13 insertions, 13 deletions
diff --git a/kopete/protocols/jabber/libiris/qca/src/CMakeLists.txt b/kopete/protocols/jabber/libiris/qca/src/CMakeLists.txt index 46de2435..162ecffa 100644 --- a/kopete/protocols/jabber/libiris/qca/src/CMakeLists.txt +++ b/kopete/protocols/jabber/libiris/qca/src/CMakeLists.txt @@ -15,8 +15,8 @@ include_directories( ) -##### qca (static) ############################## +##### tqca (static) ############################# -tde_add_library( qca STATIC_PIC AUTOMOC - SOURCES qca.cpp +tde_add_library( tqca STATIC_PIC AUTOMOC + SOURCES tqca.cpp ) diff --git a/kopete/protocols/jabber/libiris/qca/src/Makefile.am b/kopete/protocols/jabber/libiris/qca/src/Makefile.am index b43d303e..8c3c80d8 100644 --- a/kopete/protocols/jabber/libiris/qca/src/Makefile.am +++ b/kopete/protocols/jabber/libiris/qca/src/Makefile.am @@ -1,7 +1,7 @@ METASOURCES = AUTO -noinst_LTLIBRARIES = libqca.la +noinst_LTLIBRARIES = libtqca.la INCLUDES = $(all_includes) -libqca_la_SOURCES = \ - qca.cpp +libtqca_la_SOURCES = \ + tqca.cpp diff --git a/kopete/protocols/jabber/libiris/qca/src/qca.cpp b/kopete/protocols/jabber/libiris/qca/src/tqca.cpp index 89df0bb0..a4e8ab11 100644 --- a/kopete/protocols/jabber/libiris/qca/src/qca.cpp +++ b/kopete/protocols/jabber/libiris/qca/src/tqca.cpp @@ -1,5 +1,5 @@ /* - * qca.cpp - TQt Cryptographic Architecture + * tqca.cpp - TQt Cryptographic Architecture * Copyright (C) 2003 Justin Karneges * * This library is free software; you can redistribute it and/or @@ -18,7 +18,7 @@ * */ -#include "qca.h" +#include "tqca.h" #include <tqptrlist.h> #include <tqdir.h> @@ -30,7 +30,7 @@ #include <tqapplication.h> #include <tqguardedptr.h> #include <stdlib.h> -#include "qcaprovider.h" +#include "tqcaprovider.h" #if defined(Q_OS_WIN32) #define PLUGIN_EXT "dll" @@ -1478,4 +1478,4 @@ TQByteArray SASL::readOutgoing() return a; } -#include "qca.moc" +#include "tqca.moc" diff --git a/kopete/protocols/jabber/libiris/qca/src/qca.h b/kopete/protocols/jabber/libiris/qca/src/tqca.h index 7a8a3af4..701aeb31 100644 --- a/kopete/protocols/jabber/libiris/qca/src/qca.h +++ b/kopete/protocols/jabber/libiris/qca/src/tqca.h @@ -1,5 +1,5 @@ /* - * qca.h - TQt Cryptographic Architecture + * tqca.h - TQt Cryptographic Architecture * Copyright (C) 2003 Justin Karneges * * This library is free software; you can redistribute it and/or diff --git a/kopete/protocols/jabber/libiris/qca/src/qcaprovider.h b/kopete/protocols/jabber/libiris/qca/src/tqcaprovider.h index b0e5385a..f88d1b4f 100644 --- a/kopete/protocols/jabber/libiris/qca/src/qcaprovider.h +++ b/kopete/protocols/jabber/libiris/qca/src/tqcaprovider.h @@ -1,5 +1,5 @@ /* - * qcaprovider.h - TQCA Plugin API + * tqcaprovider.h - TQCA Plugin API * Copyright (C) 2003 Justin Karneges * * This library is free software; you can redistribute it and/or @@ -26,7 +26,7 @@ #include <tqdatetime.h> #include <tqobject.h> #include <tqhostaddress.h> -#include "qca.h" +#include "tqca.h" #define TQCA_PLUGIN_VERSION 1 |