1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/www/p5-HTML-Parser/files/patch-Makefile.PL
Mathieu Arnold 83ca0ce21b Update to 3.31
Add WWW
Use SITE_PERL
2003-08-27 13:41:44 +00:00

23 lines
678 B
Perl

--- Makefile.PL.orig Fri Aug 15 17:32:56 2003
+++ Makefile.PL Wed Aug 27 14:44:10 2003
@@ -10,19 +10,7 @@
}
if ($] >= 5.008) {
- print <<"EOT";
-
-Perl-5.8 provide 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(@extra, "DEFINE" => "@define") if @define;