mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
Merge pull request #1578 from ailin-nemui/cygwin
make compilation work on cygwin
This commit is contained in:
commit
d5be7d7756
20 changed files with 76 additions and 48 deletions
|
|
@ -17,12 +17,13 @@ libfe_irc_dcc_a = static_library('fe_irc_dcc',
|
|||
def_sysconfdir,
|
||||
],
|
||||
dependencies : dep)
|
||||
shared_module('fe_irc_dcc',
|
||||
shared_library('fe_irc_dcc',
|
||||
name_suffix : module_suffix,
|
||||
install : true,
|
||||
install_dir : moduledir,
|
||||
link_with : dl_cross_irc_dcc,
|
||||
link_whole : libfe_irc_dcc_a)
|
||||
link_with : dl_cross_irc_dcc + dl_cross_irc_core + dl_cross_irssi_main,
|
||||
link_whole : libfe_irc_dcc_a,
|
||||
override_options : ['b_lundef=false'])
|
||||
|
||||
install_headers(
|
||||
files(
|
||||
|
|
|
|||
|
|
@ -28,12 +28,13 @@ libfe_common_irc_a = static_library('fe_common_irc',
|
|||
def_themesdir,
|
||||
],
|
||||
dependencies : dep)
|
||||
shared_module('fe_common_irc',
|
||||
shared_library('fe_common_irc',
|
||||
name_suffix : module_suffix,
|
||||
install : true,
|
||||
install_dir : moduledir,
|
||||
link_with : dl_cross_irc_core,
|
||||
link_whole : libfe_common_irc_a)
|
||||
link_with : dl_cross_irc_core + dl_cross_irssi_main,
|
||||
link_whole : libfe_common_irc_a,
|
||||
override_options : ['b_lundef=false'])
|
||||
|
||||
install_headers(
|
||||
files(
|
||||
|
|
|
|||
|
|
@ -12,12 +12,13 @@ libfe_irc_notifylist_a = static_library('fe_irc_notifylist',
|
|||
def_sysconfdir,
|
||||
],
|
||||
dependencies : dep)
|
||||
shared_module('fe_irc_notifylist',
|
||||
shared_library('fe_irc_notifylist',
|
||||
name_suffix : module_suffix,
|
||||
install : true,
|
||||
install_dir : moduledir,
|
||||
link_with : dl_cross_irc_notifylist,
|
||||
link_whole : libfe_irc_notifylist_a)
|
||||
link_with : dl_cross_irc_notifylist + dl_cross_irssi_main,
|
||||
link_whole : libfe_irc_notifylist_a,
|
||||
override_options : ['b_lundef=false'])
|
||||
|
||||
install_headers(
|
||||
files(
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
# this file is part of irssi
|
||||
|
||||
subdir('core')
|
||||
foreach s : chat_modules
|
||||
subdir(s)
|
||||
endforeach
|
||||
# intentionally empty
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue