pidgin/pidgin

Add underscore in Meson sources lists.

2020-12-29, Elliott Sales de Andrade
16127907763b
Parents 9375289dfc32
Children 6777a9b23fd0
Add underscore in Meson sources lists.

Except for zephyr, which will be done in /r/302.

Testing Done:
Compile only.

Reviewed at https://reviews.imfreedom.org/r/312/
--- a/libpurple/protocols/bonjour/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/bonjour/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-BONJOURSOURCES = [
+BONJOUR_SOURCES = [
'bonjour.c',
'bonjour.h',
'buddy.c',
@@ -16,15 +16,15 @@
]
if IS_WIN32
- BONJOURSOURCES += ['dns_sd_proxy.c', 'mdns_dns_sd.c']
+ BONJOUR_SOURCES += ['dns_sd_proxy.c', 'mdns_dns_sd.c']
bonjour_link_args = ['-lnetapi32']
else
- BONJOURSOURCES += ['mdns_avahi.c']
+ BONJOUR_SOURCES += ['mdns_avahi.c']
bonjour_link_args = []
endif
if DYNAMIC_BONJOUR
- bonjour_prpl = shared_library('bonjour', BONJOURSOURCES,
+ bonjour_prpl = shared_library('bonjour', BONJOUR_SOURCES,
link_args : bonjour_link_args,
dependencies : [libxml, avahi, libpurple_dep, glib, nice, ws2_32],
install : true, install_dir : PURPLE_PLUGINDIR)
--- a/libpurple/protocols/facebook/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/facebook/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-FACEBOOKSOURCES = [
+FACEBOOK_SOURCES = [
'api.c',
'api.h',
'data.c',
@@ -19,7 +19,7 @@
]
if DYNAMIC_FACEBOOK
- facebook_prpl = shared_library('facebook', FACEBOOKSOURCES,
+ facebook_prpl = shared_library('facebook', FACEBOOK_SOURCES,
dependencies : [json, libpurple_dep, libsoup, glib],
install : true, install_dir : PURPLE_PLUGINDIR)
--- a/libpurple/protocols/gg/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/gg/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-GGSOURCES = [
+GG_SOURCES = [
'avatar.c',
'avatar.h',
'blist.c',
@@ -52,7 +52,7 @@
]
if DYNAMIC_GG
- gg_prpl = shared_library('gg', GGSOURCES,
+ gg_prpl = shared_library('gg', GG_SOURCES,
dependencies : [libgadu, json, libpurple_dep, libsoup, glib],
install : true, install_dir : PURPLE_PLUGINDIR)
endif
--- a/libpurple/protocols/irc/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/irc/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-IRCSOURCES = [
+IRC_SOURCES = [
'cmds.c',
'dcc_send.c',
'irc.c',
@@ -8,7 +8,7 @@
]
if DYNAMIC_IRC
- irc_prpl = shared_library('irc', IRCSOURCES,
+ irc_prpl = shared_library('irc', IRC_SOURCES,
dependencies : [sasl, libpurple_dep, glib, gio, ws2_32],
install : true, install_dir : PURPLE_PLUGINDIR)
endif
--- a/libpurple/protocols/jabber/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/jabber/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -2,7 +2,7 @@
# Check for Internationalized Domain Name support
#######################################################################
-JABBERSOURCES = [
+JABBER_SOURCES = [
'adhoccommands.c',
'adhoccommands.h',
'auth.c',
@@ -97,7 +97,7 @@
]
if sasl.found()
- JABBERSOURCES += ['auth_cyrus.c']
+ JABBER_SOURCES += ['auth_cyrus.c']
endif
if IS_WIN32
@@ -109,7 +109,7 @@
if DYNAMIC_JABBER
idn = dependency('libidn', version : '>= 0.0.0')
- jabber_prpl = shared_library('jabber', JABBERSOURCES,
+ jabber_prpl = shared_library('jabber', JABBER_SOURCES,
link_args : jabber_link_args,
dependencies : [gstreamer, idn, libxml, sasl, libpurple_dep, libsoup, glib, gio, math, nice, ws2_32],
install : true, install_dir : PURPLE_PLUGINDIR)
--- a/libpurple/protocols/novell/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/novell/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-NOVELLSOURCES = [
+NOVELL_SOURCES = [
'nmfield.h',
'nmfield.c',
'nmconn.h',
@@ -24,7 +24,7 @@
]
if DYNAMIC_NOVELL
- novell_prpl = shared_library('novell', NOVELLSOURCES,
+ novell_prpl = shared_library('novell', NOVELL_SOURCES,
dependencies : [libpurple_dep, glib, ws2_32],
install : true, install_dir : PURPLE_PLUGINDIR)
endif
--- a/libpurple/protocols/null/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/null/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,11 +1,11 @@
-NULLSOURCES = [
+NULL_SOURCES = [
'nullprpl.h',
'nullprpl.c'
]
# nullprpl isn't built by default; when it is built, it's dynamically linked
if DYNAMIC_NULL
- null_prpl = shared_library('null', NULLSOURCES,
+ null_prpl = shared_library('null', NULL_SOURCES,
dependencies : [libpurple_dep, glib],
install : false, install_dir : PURPLE_PLUGINDIR)
endif
--- a/libpurple/protocols/sametime/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/sametime/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-SAMETIMESOURCES = [
+SAMETIME_SOURCES = [
'sametime.c',
'sametime.h',
'im_mime.c',
@@ -6,7 +6,7 @@
]
if DYNAMIC_SAMETIME
- sametime_prpl = shared_library('sametime', SAMETIMESOURCES,
+ sametime_prpl = shared_library('sametime', SAMETIME_SOURCES,
c_args : ['-DG_LOG_DOMAIN="sametime"'],
dependencies : [meanwhile, gmime, libpurple_dep, glib],
install : true, install_dir : PURPLE_PLUGINDIR)
--- a/libpurple/protocols/silc/meson.build Tue Dec 29 00:27:38 2020 -0600
+++ b/libpurple/protocols/silc/meson.build Tue Dec 29 00:37:08 2020 -0600
@@ -1,4 +1,4 @@
-SILCSOURCES = [
+SILC_SOURCES = [
'buddy.c',
'chat.c',
'ft.c',
@@ -12,7 +12,7 @@
]
if DYNAMIC_SILC
- silc_prpl = shared_library('silcpurple', SILCSOURCES,
+ silc_prpl = shared_library('silcpurple', SILC_SOURCES,
dependencies : [silc, libpurple_dep, glib],
install : true, install_dir : PURPLE_PLUGINDIR)
endif