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
|
lib_LTLIBRARIES = libtntnet.la
libtntnet_la_SOURCES = \
chunkedostream.cpp \
cmd.cpp \
compident.cpp \
comploader.cpp \
component.cpp \
componentfactory.cpp \
contentdisposition.cpp \
contenttype.cpp \
cookie.cpp \
cstream.cpp \
deflatestream.cpp \
dispatcher.cpp \
ecpp.cpp \
encoding.cpp \
htmlescostream.cpp \
httperror.cpp \
httpheader.cpp \
httpmessage.cpp \
httpparser.cpp \
httprequest.cpp \
httpreply.cpp \
job.cpp \
listener.cpp \
mbcomponent.cpp \
messageattribute.cpp \
messageheader.cpp \
messageheaderparser.cpp \
mimedb.cpp \
multipart.cpp \
poller.cpp \
pollerimpl.cpp \
savepoint.cpp \
scope.cpp \
scopemanager.cpp \
stringlessignorecase.cpp \
tcpjob.cpp \
tntconfig.cpp \
tntnet.cpp \
tntnetimpl.cpp \
unzipfile.cpp \
urlescostream.cpp \
urlmapper.cpp \
util.cpp \
worker.cpp \
zdata.cpp \
crypt.h
nobase_include_HEADERS = \
tnt/applicationunlocker.h \
tnt/chunkedostream.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/cookie.h \
tnt/data.h \
tnt/deflatestream.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/mapping.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/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/zdata.h
noinst_HEADERS = \
tnt/cstream.h \
tnt/dispatcher.h \
tnt/job.h \
tnt/listener.h \
tnt/poller.h \
tnt/pollerimpl.h \
tnt/tcpjob.h \
tnt/util.h \
tnt/worker.h \
tntnetimpl.h \
ioapi.h \
unzip.h
libtntnet_la_CXXFLAGS = -DPKGLIBDIR=\"@libdir@/@PACKAGE@\"
libtntnet_la_LDFLAGS = -version-info @sonumber@ @SHARED_LIB_FLAG@
libtntnet_la_LIBADD = -lz -lcxxtools
if HAVE_MINIZIP
libtntnet_la_CXXFLAGS += $(MINIZIP_CFLAGS)
libtntnet_la_LDFLAGS += $(MINIZIP_LIBS)
else
libtntnet_la_SOURCES += \
ioapi.c \
unzip.c
endif
|