blob: 54f2fc6f543bcb645285111156f8928ea69b7872 (
plain)
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
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# don't change the order of this one. it breaks when openssl is in /usr/include
# and the distro's KDE is there too, but the current "devel" KDE prefix is
# somewhere else. Another option for the future (needs testing) would be to
# change SSL_INCLUDES to .../include/openssl and make the source use #include <foo.h>
# instead of #include <openssl/foo.h>
INCLUDES=-I$(top_srcdir)/tdecore/network -I$(top_srcdir)/kwallet/client $(all_includes) $(SSL_INCLUDES)
noinst_LTLIBRARIES = libkssl.la
KSSLVERSION= 3.0.0
KSSLPATCH= 0
METASOURCES= AUTO
include_HEADERS = \
kssl.h \
ksslcertificatehome.h \
ksslsettings.h \
ksslcertificate.h \
ksslconnectioninfo.h \
ksslcertificatefactory.h \
ksslcertificatecache.h \
ksslpeerinfo.h \
ksslinfodlg.h \
ksslcertdlg.h \
ksslutils.h \
kopenssl.h \
ksslall.h \
ksslpkcs12.h \
ksslcertchain.h \
ksslkeygen.h \
ksslx509v3.h \
ksslsigners.h \
ksslpkcs7.h \
ksslpemcallback.h \
ksslconfig.h \
ksslsession.h \
ksslx509map.h \
ksmimecrypto.h
noinst_HEADERS = ksslcsessioncache.h
libkssl_la_SOURCES = \
kssl.cc \
ksslcertificatehome.cc \
ksslsettings.cc \
ksslcertificate.cc \
ksslconnectioninfo.cc \
ksslcertificatefactory.cc \
ksslcertificatecache.cc \
ksslpeerinfo.cc \
ksslinfodlg.cc \
ksslcertdlg.cc \
ksslutils.cc \
kopenssl.cc \
ksslpkcs12.cc \
ksslcertchain.cc \
ksslkeygen.cc \
ksslx509v3.cc \
ksslsigners.cc \
ksslpkcs7.cc \
ksslpemcallback.cc \
ksslx509map.cc \
ksslsession.cc \
keygenwizard.ui \
keygenwizard2.ui \
ksmimecrypto.cc \
ksslcsessioncache.cc
SUBDIRS = kssl
include $(top_srcdir)/admin/Doxyfile.am
|