qulogic/pidgin

31e8c7c92e2f
Make sure all of the license headers for IRCv3 are GPLv2

Testing Done:
Ran `licensecheck` from debian in the following way.

```
$ licensecheck *.[ch] | cut -d: -f 2 | sort | uniq -c
27 GNU General Public License v2.0 or later
```

Reviewed at https://reviews.imfreedom.org/r/2913/
PROGS = [
'account_option',
'account_manager',
'authorization_request',
'channel_join_details',
'circular_buffer',
'contact',
'contact_info',
'contact_manager',
'conversation',
'conversation_manager',
'conversation_member',
'credential_manager',
'credential_provider',
'file_transfer',
'file_transfer_manager',
'history_adapter',
'history_manager',
'idle_manager',
'image',
'keyvaluepair',
'markup',
'menu',
'message',
'notification',
'notification_manager',
'person',
'presence',
'presence_manager',
'protocol',
'protocol_action',
'protocol_contacts',
'protocol_conversation',
'protocol_file_transfer',
'protocol_roster',
'protocol_xfer',
'purplepath',
'queued_output_stream',
'request_field',
'request_group',
'request_page',
'saved_presence',
'str',
'tags',
'util',
'whiteboard_manager',
'xmlnode',
]
test_ui = static_library(
'test-ui',
'test_ui.c',
'test_ui.h',
c_args: [
'-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()),
'-DG_LOG_USE_STRUCTURED',
'-DG_LOG_DOMAIN="Purple-TestUI"',
],
dependencies: [libpurple_dep, glib]
)
testenv.set('XDG_CONFIG_HOME', meson.current_build_dir() / 'config')
foreach prog : PROGS
e = executable(f'test_@prog@', f'test_@prog@.c',
c_args : [
'-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()),
'-DTEST_CACHE_DIR="@0@/cache"'.format(meson.current_build_dir()),
],
dependencies : [libpurple_dep, glib],
link_with: test_ui,
)
test(prog, e,
env: testenv,
)
endforeach
subdir('avatar')
subdir('sqlite3')