File: setup_pp.pl

package info (click to toggle)
libauthen-dechpwd-perl 2.007-1~1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 232 kB
  • sloc: perl: 244; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
require XSLoader;

my $orig_load = \&XSLoader::load;
no warnings "redefine";
*XSLoader::load = sub {
	die "XS loading disabled for Authen::DecHpwd"
		if ($_[0] || "") eq "Authen::DecHpwd";
	goto &$orig_load;
};

1;