forked from pool/collectd
32073e0ab5
Accepted submit request 59758 from user schubi2 OBS-URL: https://build.opensuse.org/request/show/59758 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/collectd?expand=0&rev=1
18 lines
490 B
Diff
18 lines
490 B
Diff
--- src/perl.c.orig 2008-04-02 21:06:14.000000000 +0200
|
|
+++ src/perl.c 2008-04-02 21:15:50.000000000 +0200
|
|
@@ -1440,7 +1440,13 @@
|
|
|
|
log_debug ("perl_config: loading perl plugin \"%s\"", value);
|
|
load_module (PERL_LOADMOD_NOIMPORT,
|
|
- newSVpv (module_name, strlen (module_name)), Nullsv);
|
|
+ newSVpv (module_name, strlen (module_name)),
|
|
+#if PERL_VERSION >= 10
|
|
+ newSViv(0)
|
|
+#else
|
|
+ Nullsv
|
|
+#endif
|
|
+ );
|
|
return 0;
|
|
} /* static int perl_config_loadplugin (oconfig_item_it *) */
|
|
|