merge/upstream-full #105

Manually merged
jabber.developer merged 407 commits from merge/upstream-full into master 2026-05-26 17:54:34 +00:00
204 changed files with 6036 additions and 27412 deletions
Showing only changes of commit e29c418452 - Show all commits

View File

@@ -10,21 +10,14 @@ project('profanity', 'c',
# Determine platform
host_system = host_machine.system()
platform = 'unknown'
if host_system == 'freebsd'
platform = 'freebsd'
elif host_system == 'netbsd'
platform = 'netbsd'
elif host_system == 'openbsd'
platform = 'openbsd'
elif host_system == 'darwin'
platform = 'osx'
elif host_system == 'cygwin'
platform = 'cygwin'
else
platform = 'nix'
endif
platform_map = {
'freebsd': 'freebsd',
'netbsd': 'netbsd',
'openbsd': 'openbsd',
'darwin': 'osx',
'cygwin': 'cygwin',
}
platform = platform_map.get(host_system, 'nix')
# Configuration data
conf_data = configuration_data()