mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +02:00
Merge pull request #1493 from ailin-nemui/macsuffix
add explicit name_suffix to shared modules
(cherry picked from commit f1c9fb4296)
This commit is contained in:
parent
1226a587b7
commit
db4dad3dd0
8 changed files with 18 additions and 0 deletions
10
meson.build
10
meson.build
|
|
@ -73,6 +73,16 @@ def_scriptdir = '-D' + 'SCRIPTDIR' + '="' + (get_option('prefix') / scriptdir)
|
|||
|
||||
def_suppress_printf_fallback = '-D' + 'SUPPRESS_PRINTF_FALLBACK'
|
||||
|
||||
|
||||
module_suffix = []
|
||||
perl_module_suffix = []
|
||||
# Meson uses the wrong module extensions on Mac.
|
||||
# https://gitlab.gnome.org/GNOME/glib/issues/520
|
||||
if ['darwin', 'ios'].contains(host_machine.system())
|
||||
module_suffix = 'so'
|
||||
perl_module_suffix = 'bundle'
|
||||
endif
|
||||
|
||||
##############
|
||||
# Help files #
|
||||
##############
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue