mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
Merge pull request #1166 from ailin-nemui/build-fix
fix perl module build on openbsd
This commit is contained in:
commit
5d6baeb0b5
2 changed files with 8 additions and 1 deletions
|
|
@ -406,6 +406,12 @@ if want_capsicum
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# dependency helper sets
|
||||||
|
dep_cflagsonly = []
|
||||||
|
foreach d : dep
|
||||||
|
dep_cflagsonly += d.partial_dependency(includes : true, compile_args : true)
|
||||||
|
endforeach
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# irssi-config.h #
|
# irssi-config.h #
|
||||||
##################
|
##################
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,8 @@ shared_module('perl_core',
|
||||||
install_dir : moduledir,
|
install_dir : moduledir,
|
||||||
install_rpath : perl_rpath,
|
install_rpath : perl_rpath,
|
||||||
build_rpath : perl_rpath,
|
build_rpath : perl_rpath,
|
||||||
dependencies : dep + [ perl_dep ],
|
dependencies : dep_cflagsonly + [ perl_dep ],
|
||||||
|
override_options : ['b_asneeded=false'],
|
||||||
)
|
)
|
||||||
|
|
||||||
shared_module('fe_perl',
|
shared_module('fe_perl',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue