summaryrefslogtreecommitdiff
path: root/package/perl-time-hires
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2015-09-06 10:32:50 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-09-20 15:14:10 +0200
commitceb1214632efd4b81fc5c796391f23b6acf2dada (patch)
tree20bbe44031ad71cccdcfdc398b73b23ef8b1e5b3 /package/perl-time-hires
parent259fe50be73e29025d70b6c166b2705286ce72f6 (diff)
scancpan: fix detection of native module
When a module is native or depends of a native module, it must be disabled for static builds via its Config.in We detect native modules by looking at the filenames listed in the MANIFEST. If there is a file which looks like it contains code that much be compiled (e.g. .c, .h and so on...), then we exclude that module (and its dependencies) from static builds. That's what we tried to do so far, but failed when there was a comment on the same line as the filename in the manifest, like so: foo-bar.c # Bla bla bla Fix that by detecting either endof-line (as currently done) or end-of-string. For an example of failed build of perl-html-parser, see http://autobuild.buildroot.net/results/128/128671dfa23d843698a63220c2fac1f44e1d5845/ [Thomas: use better commit log proposed by Yann E. Morin.] Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/perl-time-hires')
-rw-r--r--package/perl-time-hires/Config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/package/perl-time-hires/Config.in b/package/perl-time-hires/Config.in
index e10c18a0d..37bad71d8 100644
--- a/package/perl-time-hires/Config.in
+++ b/package/perl-time-hires/Config.in
@@ -1,6 +1,10 @@
config BR2_PACKAGE_PERL_TIME_HIRES
bool "perl-time-hires"
+ depends on !BR2_STATIC_LIBS
help
High resolution alarm, sleep, gettimeofday, interval timers
http://search.cpan.org/dist/Time-HiRes/HiRes.pm
+
+comment "perl-time-hires needs a toolchain w/ dynamic library"
+ depends on BR2_STATIC_LIBS