1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-29 21:39:24 +00:00
freebsd-ports/www/p5-HTML-Parser/files/patch-Makefile.PL
Vanilla I. Shu 511045b36c Upgrade p5-HTML-Parser => 3.15
p5-Net-Daemon  => 0.34
	p5-Storable    => 1.0.7
2001-01-08 22:23:27 +00:00

24 lines
733 B
Perl

--- Makefile.PL.orig Tue Dec 26 15:48:57 2000
+++ Makefile.PL Mon Jan 8 21:06:36 2001
@@ -10,19 +10,7 @@
}
if ($] >= 5.007) {
- print <<"EOT";
-
-Perl-5.7 provide experimental core support for Unicode strings. You
-can compile HTML::Entities so that Unicode entities like &euro; and
-&#x20AC; are decoded into a string containing "\\x{20AC}". If you
-select no to the question below such entities will be left alone and
-only entities in the Latin-1 range is decoded.
-
-EOT
- my $ans = prompt("Do you want decoding on unicode entities?", "no");
- if ($ans =~ /^y(es)?$/i) {
- push(@define, "-DUNICODE_ENTITIES");
- }
+ push(@define, "-DUNICODE_ENTITIES");
}
push(@extra, "DEFINE" => "@define") if @define;