Replace functions which called once with their bodies
[pidgin-git.git] / libpurple / protocols / zephyr / meson.build
blobdc18ed2787715d763a53bc084d3accf39ef414bb
1 ZEPHYRSOURCES = [
2         'ZAsyncLocate.c',
3         'ZCkAuth.c',
4         'ZCkIfNot.c',
5         'ZClosePort.c',
6         'ZCmpUID.c',
7         'ZCmpUIDP.c',
8         'ZFlsLocs.c',
9         'ZFlsSubs.c',
10         'ZFmtAuth.c',
11         'ZFmtList.c',
12         'ZFmtNotice.c',
13         'ZFmtRaw.c',
14         'ZFmtRawLst.c',
15         'ZFmtSmRaw.c',
16         'ZFreeNot.c',
17         'ZGetLocs.c',
18         'ZGetSender.c',
19         'ZGetSubs.c',
20         'ZGetWGPort.c',
21         'ZIfNotice.c',
22         'ZInit.c',
23         'ZLocations.c',
24         'ZMakeAscii.c',
25         'ZMkAuth.c',
26         'ZNewLocU.c',
27         'ZOpenPort.c',
28         'ZParseNot.c',
29         'ZPeekNot.c',
30         'ZPeekPkt.c',
31         'ZPending.c',
32         'ZReadAscii.c',
33         'ZRecvNot.c',
34         'ZRecvPkt.c',
35         'ZRetSubs.c',
36         'ZSendList.c',
37         'ZSendNot.c',
38         'ZSendPkt.c',
39         'ZSetDest.c',
40         'ZSetFD.c',
41         'ZSetSrv.c',
42         'ZSubs.c',
43         'ZVariables.c',
44         'ZWait4Not.c',
45         'ZhmStat.c',
46         'Zinternal.c',
47         'com_err.h',
48         'error_message.c',
49         'error_table.h',
50         'et_name.c',
51         'init_et.c',
52         'internal.h',
53         'mit-copyright.h',
54         'mit-sipb-copyright.h',
55         'sysdep.h',
56         'zephyr_err.c',
57         'zephyr_err.h',
58         'zephyr_internal.h',
59         'zephyr.c',
60         'zephyr.h'
63 ZEPHYRSOURCESEXT = ['zephyr.c', 'zephyr.h']
65 extdep = krb4
66 if EXTERNAL_LIBZEPHYR
67         ZEPHYRSOURCES = ZEPHYRSOURCESEXT
68         extdep = ext_zephyr
69 endif
71 if DYNAMIC_ZEPHYR
72         zephyr_prpl = shared_library('zephyr', ZEPHYRSOURCES,
73             c_args : '-Dlint',
74             dependencies : [extdep, libpurple_dep, glib],
75             install : true, install_dir : PURPLE_PLUGINDIR)
76 endif