| 102 jabber_link_args = [] |
114 jabber_link_args = [] |
| 103 endif |
115 endif |
| 104 |
116 |
| 105 if STATIC_JABBER |
117 if STATIC_JABBER |
| 106 jabber_prpl = static_library('jabber', JABBERSOURCES, |
118 jabber_prpl = static_library('jabber', JABBERSOURCES, |
| 107 c_args : '-DPURPLE_STATIC_PRPL', |
119 c_args : ['-DPURPLE_STATIC_PRPL', use_idn], |
| 108 link_args : jabber_link_args, |
120 link_args : jabber_link_args, |
| 109 dependencies : [gstreamer, idn, libxml, sasl, libpurple_dep, glib, gio, math, ws2_32]) |
121 dependencies : [gstreamer, idn, libxml, sasl, libpurple_dep, glib, gio, math, ws2_32]) |
| 110 elif DYNAMIC_JABBER |
122 elif DYNAMIC_JABBER |
| 111 jabber_prpl = shared_library('jabber', JABBERSOURCES, |
123 jabber_prpl = shared_library('jabber', JABBERSOURCES, |
| |
124 c_args : use_idn, |
| 112 link_args : jabber_link_args, |
125 link_args : jabber_link_args, |
| 113 dependencies : [gstreamer, idn, libxml, sasl, libpurple_dep, glib, gio, math, ws2_32], |
126 dependencies : [gstreamer, idn, libxml, sasl, libpurple_dep, glib, gio, math, ws2_32], |
| 114 install : true, install_dir : PURPLE_PLUGINDIR) |
127 install : true, install_dir : PURPLE_PLUGINDIR) |
| 115 endif |
128 endif |
| 116 |
129 |