By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1412
Collapse All | Expand All

(-)a/configure (-1 / +1 lines)
Lines 44-50 while [ $# -gt 0 ]; do Link Here
44
done
44
done
45
45
46
46
47
echo "Configuring qca-tls ..."
47
echo "Configuring tqca-tls ..."
48
48
49
if [ "$QC_DEBUG" = "Y" ]; then
49
if [ "$QC_DEBUG" = "Y" ]; then
50
echo
50
echo
(-)a/qca-tls.pro (-4 / +4 lines)
Lines 1-8 Link Here
1
# qca-tls qmake profile
1
# tqca-tls qmake profile
2
2
3
TEMPLATE = lib
3
TEMPLATE = lib
4
CONFIG  += qt thread release plugin
4
CONFIG  += qt thread release plugin
5
TARGET   = qca-tls
5
TARGET   = tqca-tls
6
6
7
!exists(qcaprovider.h) {
7
!exists(qcaprovider.h) {
8
  Q_PREFIX = ../../src
8
  Q_PREFIX = ../../src
Lines 13-21 HEADERS += ($$Q_PREFIX)qcaprovider.h Link Here
13
HEADERS = qca-tls.h
13
HEADERS = qca-tls.h
14
SOURCES = qca-tls.cpp
14
SOURCES = qca-tls.cpp
15
15
16
DEFINES += QCA_PLUGIN
16
DEFINES += TQCA_PLUGIN
17
win32:{
17
win32:{
18
	DEFINES += QCA_PLUGIN_DLL OSSL_097
18
	DEFINES += TQCA_PLUGIN_DLL OSSL_097
19
	INCLUDEPATH += c:\local\include
19
	INCLUDEPATH += c:\local\include
20
	LIBS += c:\local\lib\libeay32.lib c:\local\lib\ssleay32.lib
20
	LIBS += c:\local\lib\libeay32.lib c:\local\lib\ssleay32.lib
21
}
21
}
(-)a/qca-tls.qc (-1 / +1 lines)
Lines 1-5 Link Here
1
<qconf>
1
<qconf>
2
 <name>qca-tls</name>
2
 <name>tqca-tls</name>
3
 <profile>qca-tls.pro</profile>
3
 <profile>qca-tls.pro</profile>
4
 <noprefix/>
4
 <noprefix/>
5
 <dep type='openssl'>
5
 <dep type='openssl'>
(-)a/qca.h (-1 / +1 lines)
Lines 49-55 Link Here
49
#  endif
49
#  endif
50
#endif
50
#endif
51
#ifndef TQCA_PLUGIN_EXPORT
51
#ifndef TQCA_PLUGIN_EXPORT
52
#define TQCA_PLUGIN_EXPORT extern "C"
52
#define TQCA_PLUGIN_EXPORT extern "C" __attribute__ ((visibility ("default")))
53
#endif
53
#endif
54
54
55
class TQHostAddress;
55
class TQHostAddress;

Return to bug 1412