gplugin/gplugin

Parents cb0eae952501
Children d54f5079d963
Don't bother looking for libperl on FreeBSD as it's there if the perl executable is installed.

Testing Done:
Tested on debian with and without libperl-dev installed as well as FreeBSD with perl installed.

Reviewed at https://reviews.imfreedom.org/r/246/
--- a/perl5/meson.build Fri Nov 20 02:11:44 2020 -0600
+++ b/perl5/meson.build Fri Nov 20 21:19:12 2020 -0600
@@ -19,7 +19,10 @@
PERL = find_program('perl')
# make sure we have the perl library as well.
- LIBPERL = compiler.find_library('libperl')
+ LIBPERL = []
+ if host_machine.system() != 'freebsd'
+ LIBPERL = compiler.find_library('libperl')
+ endif
# make sure we have the gobject introspection perl module.
run_command(