mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +02:00
carry rpath to working perl test
This commit is contained in:
parent
aa9bb36a0d
commit
12c8cb1f37
1 changed files with 4 additions and 1 deletions
|
|
@ -246,6 +246,7 @@ have_perl = false
|
||||||
if want_perl
|
if want_perl
|
||||||
perl_cflags = []
|
perl_cflags = []
|
||||||
perl_ldflags = []
|
perl_ldflags = []
|
||||||
|
perl_rpath_flags = []
|
||||||
perl_rpath = ''
|
perl_rpath = ''
|
||||||
|
|
||||||
#### ccopts ####
|
#### ccopts ####
|
||||||
|
|
@ -265,6 +266,7 @@ if want_perl
|
||||||
if not fl.startswith('-A') and not skip_libs.contains(fl)
|
if not fl.startswith('-A') and not skip_libs.contains(fl)
|
||||||
if fl.startswith('-Wl,-rpath,')
|
if fl.startswith('-Wl,-rpath,')
|
||||||
perl_rpath = fl.split(',')[2]
|
perl_rpath = fl.split(',')[2]
|
||||||
|
perl_rpath_flags += fl
|
||||||
else
|
else
|
||||||
perl_ldflags += fl
|
perl_ldflags += fl
|
||||||
endif
|
endif
|
||||||
|
|
@ -283,7 +285,8 @@ int main()
|
||||||
perl_alloc();
|
perl_alloc();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
''', args : perl_cflags + perl_ldflags, name : 'working Perl support').compiled()
|
''', args : perl_cflags + perl_ldflags + perl_rpath_flags,
|
||||||
|
name : 'working Perl support').compiled()
|
||||||
if require_perl
|
if require_perl
|
||||||
error('error linking with perl libraries')
|
error('error linking with perl libraries')
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue