blob: ddffd93e12200545b45700f15ff0e860e00262e3 (
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
|
## Does not compile with final
KDE_OPTIONS = nofinal
libcricketbase_la_SOURCES = socketaddress.cpp \
jtime.cpp \
asyncudpsocket.cpp \
messagequeue.cpp \
thread.cpp \
physicalsocketserver.cpp \
bytebuffer.cpp \
asyncpacketsocket.cpp \
network.cpp \
asynctcpsocket.cpp \
socketadapters.cpp \
md5c.c \
base64.cpp \
task.cpp \
taskrunner.cpp \
host.cpp \
socketaddresspair.cpp
noinst_HEADERS = asyncfile.h \
common.h \
asyncpacketsocket.h \
socketfactory.h \
asyncsocket.h \
socket.h \
asynctcpsocket.h \
linked_ptr.h \
asyncudpsocket.h \
logging.h \
socketserver.h \
base64.h \
md5.h \
stl_decl.h \
basicdefs.h \
messagequeue.h \
basictypes.h \
stringutils.h \
bytebuffer.h \
task.h \
byteorder.h \
taskrunner.h \
criticalsection.h \
network.h \
thread.h \
jtime.h \
physicalsocketserver.h \
proxyinfo.h \
host.h \
scoped_ptr.h \
sigslot.h \
winping.h \
socketadapters.h \
socketaddress.h \
host.h \
socketaddresspair.h
AM_CPPFLAGS = -DPOSIX -I$(srcdir)/../.. -I$(top_builddir) $(all_includes)
noinst_LTLIBRARIES = libcricketbase.la
DEFAULT_INCLUDES = -I$(srcdir)/../..
|