aboutsummaryrefslogtreecommitdiffstats
path: root/dns
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2004-01-02 10:33:10 +0800
committerdougb <dougb@FreeBSD.org>2004-01-02 10:33:10 +0800
commitd59755be8a168d2dde7f42b834f62527d5429e43 (patch)
treef82837175581e886824eee9a1b40c188be193e50 /dns
parent7ffce999f708c5d6f220cd6611d8941ea60ac738 (diff)
downloadfreebsd-ports-gnome-d59755be8a168d2dde7f42b834f62527d5429e43.tar.gz
freebsd-ports-gnome-d59755be8a168d2dde7f42b834f62527d5429e43.tar.zst
freebsd-ports-gnome-d59755be8a168d2dde7f42b834f62527d5429e43.zip
This patch is no longer needed as of 0.44
Diffstat (limited to 'dns')
-rw-r--r--dns/p5-Net-DNS/files/patch-Makefile.Pl53
1 files changed, 0 insertions, 53 deletions
diff --git a/dns/p5-Net-DNS/files/patch-Makefile.Pl b/dns/p5-Net-DNS/files/patch-Makefile.Pl
deleted file mode 100644
index a1f36448325d..000000000000
--- a/dns/p5-Net-DNS/files/patch-Makefile.Pl
+++ /dev/null
@@ -1,53 +0,0 @@
---- Makefile.PL.orig Thu Jun 5 16:42:58 2003
-+++ Makefile.PL Fri Jun 13 16:38:15 2003
-@@ -82,30 +82,30 @@
- # Check if we have internet connection
- # (I lifted this code from LWP... )
- #
--my $s = IO::Socket::INET->new(
-- PeerAddr => "www.google.com:80",
-- Timeout => 10,
--);
-+#my $s = IO::Socket::INET->new(
-+# PeerAddr => "www.google.com:80",
-+# Timeout => 10,
-+#);
-
--if ($s) {
-- close($s);
-+#if ($s) {
-+# close($s);
-+#
-+# print <<EOT;
-
-- print <<EOT;
-+#You appear to be directly connected to the Internet. I have some tests
-+#that try to query live nameservers.
-
--You appear to be directly connected to the Internet. I have some tests
--that try to query live nameservers.
-+#EOT
-
--EOT
--
-- if (prompt("Do you want to enable these tests?", "y") =~ /^y/i) {
-- open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!";
-- close(ENABLED);
-- } else {
-- unlink("t/online.enabled"); # just to be shure...
-- }
--} else {
-- unlink("t/online.enabled"); # just to be shure...
--}
-+# if (prompt("Do you want to enable these tests?", "y") =~ /^y/i) {
-+# open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!";
-+# close(ENABLED);
-+# } else {
-+# unlink("t/online.enabled"); # just to be shure...
-+# }
-+#} else {
-+# unlink("t/online.enabled"); # just to be shure...
-+#}
-
-
- WriteMakefile(%Makefile);