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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
lib_LTLIBRARIES = libtntnet.la
libtntnet_la_SOURCES = \
backgroundworker.cpp \
cmd.cpp \
compident.cpp \
comploader.cpp \
component.cpp \
componentfactory.cpp \
configurator.cpp \
contentdisposition.cpp \
contenttype.cpp \
convert.cpp \
cookie.cpp \
deflatestream.cpp \
dispatcher.cpp \
ecpp.cpp \
encoding.cpp \
htmlescostream.cpp \
http.cpp \
httperror.cpp \
httpheader.cpp \
httpmessage.cpp \
httpparser.cpp \
httprequest.cpp \
httpreply.cpp \
ioapi.c \
job.cpp \
langlib.cpp \
listener.cpp \
mbcomponent.cpp \
messageattribute.cpp \
messageheader.cpp \
messageheaderparser.cpp \
mimedb.cpp \
multipart.cpp \
poller.cpp \
savepoint.cpp \
scope.cpp \
scopemanager.cpp \
sessionscope.cpp \
stringlessignorecase.cpp \
tntconfig.cpp \
tntnet.cpp \
unzip.c \
unzipfile.cpp \
urlescostream.cpp \
urlmapper.cpp \
util.cpp \
worker.cpp \
zdata.cpp \
crypt.h \
ioapi.h \
unzip.h
nobase_include_HEADERS = \
tnt/applicationunlocker.h \
tnt/backgroundworker.h \
tnt/cmd.h \
tnt/compident.h \
tnt/comploader.h \
tnt/component.h \
tnt/componentfactory.h \
tnt/configurator.h \
tnt/contentdisposition.h \
tnt/contenttype.h \
tnt/convert.h \
tnt/cookie.h \
tnt/data.h \
tnt/deflatestream.h \
tnt/dispatcher.h \
tnt/ecpp.h \
tnt/encoding.h \
tnt/htmlescostream.h \
tnt/http.h \
tnt/httperror.h \
tnt/httpheader.h \
tnt/httpmessage.h \
tnt/httpparser.h \
tnt/httprequest.h \
tnt/httpreply.h \
tnt/job.h \
tnt/langlib.h \
tnt/maptarget.h \
tnt/mbcomponent.h \
tnt/messageattribute.h \
tnt/messageheader.h \
tnt/messageheaderparser.h \
tnt/mimedb.h \
tnt/multipart.h \
tnt/object.h \
tnt/parser.h \
tnt/poller.h \
tnt/query_params.h \
tnt/savepoint.h \
tnt/scope.h \
tnt/scopemanager.h \
tnt/sessionscope.h \
tnt/sessionunlocker.h \
tnt/socketif.h \
tnt/stringlessignorecase.h \
tnt/threadcontext.h \
tnt/tntconfig.h \
tnt/tntnet.h \
tnt/unzipfile.h \
tnt/urlescostream.h \
tnt/urlmapper.h \
tnt/worker.h \
tnt/zdata.h
noinst_HEADERS = \
tnt/listener.h \
tnt/pollerimpl.h \
tnt/ssl.h \
tnt/tcpjob.h \
tnt/util.h
libtntnet_la_CXXFLAGS = -DPKGLIBDIR=\"@libdir@/@PACKAGE@\" $(PTHREAD_CFLAGS)
libtntnet_la_LDFLAGS = -version-info @sonumber@ @SHARED_LIB_FLAG@
libtntnet_la_LIBADD = -lz -lcxxtools $(PTHREAD_LIBS)
if MAKE_GNUTLS
libtntnet_la_SOURCES += \
gnutls.cpp
noinst_HEADERS += \
tnt/gcryptinit.h \
tnt/gnutls.h
libtntnet_la_LIBADD += $(GNUTLS_LIBS)
endif
if MAKE_OPENSSL
libtntnet_la_SOURCES += \
openssl.cpp
noinst_HEADERS += \
tnt/openssl.h
libtntnet_la_LIBADD += -lssl -lcrypto
endif
if MAKE_STRESSJOB
libtntnet_la_SOURCES += \
stressjob.cpp
noinst_HEADERS += \
tnt/stressjob.h
endif
|