mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
Upgrade to 1.06.5, and portlint.
This commit is contained in:
parent
96381e5cac
commit
c1f9d2f9ff
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=10678
@ -1,13 +1,13 @@
|
||||
# New ports collection makefile for: p5-Net
|
||||
# Version required: 1.0602
|
||||
# Version required: 1.0605
|
||||
# Date created: September 30th 1996
|
||||
# Whom: James FitzGibbon <jfitz@FreeBSD.org>
|
||||
#
|
||||
# $Id: Makefile,v 1.13 1997/06/27 18:38:15 jfitz Exp $
|
||||
# $Id: Makefile,v 1.14 1997/11/22 17:48:09 ache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= libnet-1.0602
|
||||
PKGNAME= p5-Net-1.0602
|
||||
DISTNAME= libnet-1.0605
|
||||
PKGNAME= p5-Net-1.0605
|
||||
CATEGORIES= net perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Net
|
||||
@ -20,7 +20,7 @@ USE_PERL5= YES
|
||||
|
||||
MAN3= Net::Time.3 Net::DummyInetd.3 Net::NNTP.3 Net::SNPP.3 \
|
||||
Net::POP3.3 Net::Cmd.3 Net::SMTP.3 Net::Domain.3 \
|
||||
Net::FTP.3 Net::Netrc.3 Net::PH.3
|
||||
Net::FTP.3 Net::Netrc.3 Net::PH.3 FAQ.3
|
||||
MANPREFIX= ${PREFIX}/lib/perl5
|
||||
|
||||
do-configure:
|
||||
|
@ -1 +1 @@
|
||||
MD5 (libnet-1.0602.tar.gz) = ad462d9d54a84ed01786d4a2854fc393
|
||||
MD5 (libnet-1.0605.tar.gz) = f6b176a5d57598492f10b36df5f7a291
|
||||
|
@ -1,321 +1,227 @@
|
||||
*** Configure.orig Wed Nov 5 06:27:54 1997
|
||||
--- Configure Sat Nov 22 20:18:47 1997
|
||||
***************
|
||||
*** 195,212 ****
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! if(!-f $config_pm && $have_old && !$opt_d)
|
||||
! {
|
||||
! $msg = <<EDQ;
|
||||
|
||||
! Ah, I see you already have installed libnet before.
|
||||
!
|
||||
! Do you want to modify/update your configuration (y|n) ?
|
||||
! EDQ
|
||||
!
|
||||
! $opt_d = 1
|
||||
! unless get_bool($msg,0);
|
||||
! }
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
--- 195,215 ----
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! #if(!-f $config_pm && $have_old && !$opt_d)
|
||||
! # {
|
||||
! # $msg = <<EDQ;
|
||||
! #
|
||||
! #Ah, I see you already have installed libnet before.
|
||||
! #
|
||||
! #Do you want to modify/update your configuration (y|n) ?
|
||||
! #EDQ
|
||||
! #
|
||||
! # $opt_d = 1
|
||||
! # unless get_bool($msg,0);
|
||||
! # }
|
||||
! #
|
||||
|
||||
! $opt_d = 0;
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
***************
|
||||
*** 223,229 ****
|
||||
Do you want me to perform hostname lookups (y|n) ?
|
||||
EDQ
|
||||
|
||||
! $cfg{'test_exist'} = get_bool($msg, $oldcfg{'test_exist'});
|
||||
|
||||
print <<EDQ unless $cfg{'test_exist'};
|
||||
|
||||
--- 226,233 ----
|
||||
Do you want me to perform hostname lookups (y|n) ?
|
||||
EDQ
|
||||
|
||||
! #$cfg{'test_exist'} = get_bool($msg, $oldcfg{'test_exist'});
|
||||
! $cfg{'test_exist'} = 1;
|
||||
|
||||
print <<EDQ unless $cfg{'test_exist'};
|
||||
|
||||
***************
|
||||
*** 238,308 ****
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! print <<EDQ;
|
||||
!
|
||||
! The following questions all require a list of host names, separated
|
||||
! with spaces. If you do not have a host available for any of the
|
||||
! services, then enter a single space, followed by <CR>. To accept the
|
||||
! default, hit <CR>
|
||||
!
|
||||
! EDQ
|
||||
|
||||
$msg = 'Enter a list of available NNTP hosts :';
|
||||
|
||||
! $def = $oldcfg{'nntp_hosts'} ||
|
||||
! [ default_hostname($ENV{NNTPSERVER},$ENV{NEWSHOST},'news') ];
|
||||
|
||||
! $cfg{'nntp_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available SMTP hosts :';
|
||||
|
||||
! $def = $oldcfg{'smtp_hosts'} ||
|
||||
! [ default_hostname(split(/:/,$ENV{SMTPHOSTS} || ""), 'mailhost') ];
|
||||
|
||||
! $cfg{'smtp_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available POP3 hosts :';
|
||||
|
||||
! $def = $oldcfg{'pop3_hosts'} || [];
|
||||
|
||||
! $cfg{'pop3_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available SNPP hosts :';
|
||||
|
||||
! $def = $oldcfg{'snpp_hosts'} || [];
|
||||
|
||||
! $cfg{'snpp_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available PH Hosts :' ;
|
||||
|
||||
! $def = $oldcfg{'ph_hosts'} ||
|
||||
! [ default_hostname('dirserv') ];
|
||||
|
||||
! $cfg{'ph_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available TIME Hosts :' ;
|
||||
|
||||
! $def = $oldcfg{'time_hosts'} || [];
|
||||
|
||||
! $cfg{'time_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available DAYTIME Hosts :' ;
|
||||
|
||||
! $def = $oldcfg{'daytime_hosts'} || $oldcfg{'time_hosts'};
|
||||
|
||||
! $cfg{'daytime_hosts'} = get_host_list($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
--- 242,312 ----
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! #print <<EDQ;
|
||||
! #
|
||||
! #The following questions all require a list of host names, separated
|
||||
! #with spaces. If you do not have a host available for any of the
|
||||
! #services, then enter a single space, followed by <CR>. To accept the
|
||||
! #default, hit <CR>
|
||||
! #
|
||||
! #EDQ
|
||||
|
||||
$msg = 'Enter a list of available NNTP hosts :';
|
||||
|
||||
! #$def = $oldcfg{'nntp_hosts'} ||
|
||||
! # [ default_hostname($ENV{NNTPSERVER},$ENV{NEWSHOST},'news') ];
|
||||
|
||||
! $cfg{'nntp_hosts'} = [ default_hostname($ENV{NNTPSERVER},$ENV{NEWSHOST},'news') ];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available SMTP hosts :';
|
||||
|
||||
! #$def = $oldcfg{'smtp_hosts'} ||
|
||||
! # [ default_hostname(split(/:/,$ENV{SMTPHOSTS} || ""), 'mailhost') ];
|
||||
|
||||
! $cfg{'smtp_hosts'} = [ default_hostname(split(/:/,$ENV{SMTPHOSTS} || ""), 'mailhost') ];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available POP3 hosts :';
|
||||
|
||||
! #$def = $oldcfg{'pop3_hosts'} || [];
|
||||
|
||||
! $cfg{'pop3_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available SNPP hosts :';
|
||||
|
||||
! #$def = $oldcfg{'snpp_hosts'} || [];
|
||||
|
||||
! $cfg{'snpp_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available PH Hosts :' ;
|
||||
|
||||
! #$def = $oldcfg{'ph_hosts'} ||
|
||||
! # [ default_hostname('dirserv') ];
|
||||
|
||||
! $cfg{'ph_hosts'} = [ default_hostname('dirserv') ];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available TIME Hosts :' ;
|
||||
|
||||
! #$def = $oldcfg{'time_hosts'} || [];
|
||||
|
||||
! $cfg{'time_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available DAYTIME Hosts :' ;
|
||||
|
||||
! #$def = $oldcfg{'daytime_hosts'} || $oldcfg{'time_hosts'};
|
||||
|
||||
! $cfg{'daytime_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
***************
|
||||
*** 318,326 ****
|
||||
FTP proxy hostname :
|
||||
EDQ
|
||||
|
||||
! $def = $oldcfg{'ftp_firewall'} || $ENV{FTP_FIREWALL};
|
||||
|
||||
! $cfg{'ftp_firewall'} = get_hostname($msg,$def);
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
--- 322,330 ----
|
||||
FTP proxy hostname :
|
||||
EDQ
|
||||
|
||||
! # $def = $oldcfg{'ftp_firewall'} || $ENV{FTP_FIREWALL};
|
||||
|
||||
! $cfg{'ftp_firewall'} = $ENV{FTP_FIREWALL};
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
***************
|
||||
*** 341,377 ****
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! print <<EDQ;
|
||||
!
|
||||
! Normally when FTP needs a data connection the client tells the server
|
||||
! a port to connect to, and the server initiates a connection to the client.
|
||||
!
|
||||
! Some setups, in particular firewall setups, can/do not work using this
|
||||
! protocol. In these situations the client must make the connection to the
|
||||
! server, this is called a passive transfer.
|
||||
! EDQ
|
||||
|
||||
$msg = "\nShould all FTP connections via a firewall/proxy be passive (y|n) ?";
|
||||
|
||||
! $def = $oldcfg{'ftp_ext_passive'} || 0;
|
||||
!
|
||||
! $cfg{'ftp_ext_passive'} = get_bool($msg,$def);
|
||||
|
||||
|
||||
! $def = $oldcfg{'ftp_int_passive'} || 0;
|
||||
|
||||
$msg = "\nShould all other FTP connections be passive (y|n) ?";
|
||||
|
||||
! $cfg{'ftp_int_passive'} = get_bool($msg,$def);
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! $def = $oldcfg{'inet_domain'} || $ENV{LOCALDOMAIN};
|
||||
|
||||
! $ans = Prompt("\nWhat is your local internet domain name :",$def);
|
||||
|
||||
! $cfg{'inet_domain'} = ($ans =~ /(\S+)/)[0];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
--- 345,380 ----
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! #print <<EDQ;
|
||||
! #
|
||||
! #Normally when FTP needs a data connection the client tells the server
|
||||
! #a port to connect to, and the server initiates a connection to the client.
|
||||
! #
|
||||
! #Some setups, in particular firewall setups, can/do not work using this
|
||||
! #protocol. In these situations the client must make the connection to the
|
||||
! #server, this is called a passive transfer.
|
||||
! #EDQ
|
||||
|
||||
$msg = "\nShould all FTP connections via a firewall/proxy be passive (y|n) ?";
|
||||
|
||||
! # $def = $oldcfg{'ftp_ext_passive'} || 0;
|
||||
|
||||
+ $cfg{'ftp_ext_passive'} = 0;
|
||||
|
||||
! # $def = $oldcfg{'ftp_int_passive'} || 0;
|
||||
|
||||
$msg = "\nShould all other FTP connections be passive (y|n) ?";
|
||||
|
||||
! $cfg{'ftp_int_passive'} = 0;
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
! # $def = $oldcfg{'inet_domain'} || $ENV{LOCALDOMAIN};
|
||||
|
||||
! # $ans = Prompt("\nWhat is your local internet domain name :",$def);
|
||||
|
||||
! $cfg{'inet_domain'} = "";
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
***************
|
||||
*** 387,393 ****
|
||||
Do you want me to run these tests (y|n) ?
|
||||
EDQ
|
||||
|
||||
! $cfg{'test_hosts'} = get_bool($msg,$oldcfg{'test_hosts'});
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
--- 390,396 ----
|
||||
Do you want me to run these tests (y|n) ?
|
||||
EDQ
|
||||
|
||||
! $cfg{'test_hosts'} = 0;
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
--- Configure.orig Wed Nov 5 11:27:54 1997
|
||||
+++ Configure Sun Apr 26 10:35:56 1998
|
||||
@@ -195,18 +195,19 @@
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
-if(!-f $config_pm && $have_old && !$opt_d)
|
||||
- {
|
||||
- $msg = <<EDQ;
|
||||
-
|
||||
-Ah, I see you already have installed libnet before.
|
||||
-
|
||||
-Do you want to modify/update your configuration (y|n) ?
|
||||
-EDQ
|
||||
-
|
||||
- $opt_d = 1
|
||||
- unless get_bool($msg,0);
|
||||
- }
|
||||
+#if(!-f $config_pm && $have_old && !$opt_d)
|
||||
+# {
|
||||
+# $msg = <<EDQ;
|
||||
+#
|
||||
+#Ah, I see you already have installed libnet before.
|
||||
+#
|
||||
+#Do you want to modify/update your configuration (y|n) ?
|
||||
+#EDQ
|
||||
+#
|
||||
+# $opt_d = 1
|
||||
+# unless get_bool($msg,0);
|
||||
+# }
|
||||
+$opt_d = 0;
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
@@ -223,7 +224,8 @@
|
||||
Do you want me to perform hostname lookups (y|n) ?
|
||||
EDQ
|
||||
|
||||
-$cfg{'test_exist'} = get_bool($msg, $oldcfg{'test_exist'});
|
||||
+#$cfg{'test_exist'} = get_bool($msg, $oldcfg{'test_exist'});
|
||||
+$cfg{'test_exist'} = 1;
|
||||
|
||||
print <<EDQ unless $cfg{'test_exist'};
|
||||
|
||||
@@ -238,71 +240,78 @@
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
-print <<EDQ;
|
||||
-
|
||||
-The following questions all require a list of host names, separated
|
||||
-with spaces. If you do not have a host available for any of the
|
||||
-services, then enter a single space, followed by <CR>. To accept the
|
||||
-default, hit <CR>
|
||||
-
|
||||
-EDQ
|
||||
+#print <<EDQ;
|
||||
+#
|
||||
+#The following questions all require a list of host names, separated
|
||||
+#with spaces. If you do not have a host available for any of the
|
||||
+#services, then enter a single space, followed by <CR>. To accept the
|
||||
+#default, hit <CR>
|
||||
+#
|
||||
+#EDQ
|
||||
|
||||
$msg = 'Enter a list of available NNTP hosts :';
|
||||
|
||||
-$def = $oldcfg{'nntp_hosts'} ||
|
||||
- [ default_hostname($ENV{NNTPSERVER},$ENV{NEWSHOST},'news') ];
|
||||
+#$def = $oldcfg{'nntp_hosts'} ||
|
||||
+# [ default_hostname($ENV{NNTPSERVER},$ENV{NEWSHOST},'news') ];
|
||||
|
||||
-$cfg{'nntp_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'nntp_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'nntp_hosts'} = [ default_hostname($ENV{NNTPSERVER}, $ENV{NEWSHOST}, 'news') ];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available SMTP hosts :';
|
||||
|
||||
-$def = $oldcfg{'smtp_hosts'} ||
|
||||
- [ default_hostname(split(/:/,$ENV{SMTPHOSTS} || ""), 'mailhost') ];
|
||||
+#$def = $oldcfg{'smtp_hosts'} ||
|
||||
+# [ default_hostname(split(/:/,$ENV{SMTPHOSTS} || ""), 'mailhost') ];
|
||||
|
||||
-$cfg{'smtp_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'smtp_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'smtp_hosts'} = [ default_hostname(split(/:/,$ENV{SMTPHOSTS} || ""), 'mailhost') ];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available POP3 hosts :';
|
||||
|
||||
-$def = $oldcfg{'pop3_hosts'} || [];
|
||||
+#$def = $oldcfg{'pop3_hosts'} || [];
|
||||
|
||||
-$cfg{'pop3_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'pop3_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'pop3_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available SNPP hosts :';
|
||||
|
||||
-$def = $oldcfg{'snpp_hosts'} || [];
|
||||
+#$def = $oldcfg{'snpp_hosts'} || [];
|
||||
|
||||
-$cfg{'snpp_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'snpp_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'snpp_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available PH Hosts :' ;
|
||||
|
||||
-$def = $oldcfg{'ph_hosts'} ||
|
||||
- [ default_hostname('dirserv') ];
|
||||
+#$def = $oldcfg{'ph_hosts'} ||
|
||||
+# [ default_hostname('dirserv') ];
|
||||
|
||||
-$cfg{'ph_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'ph_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'ph_hosts'} = [ default_hostname('dirserv') ];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available TIME Hosts :' ;
|
||||
|
||||
-$def = $oldcfg{'time_hosts'} || [];
|
||||
+#$def = $oldcfg{'time_hosts'} || [];
|
||||
|
||||
-$cfg{'time_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'time_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'time_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
$msg = 'Enter a list of available DAYTIME Hosts :' ;
|
||||
|
||||
-$def = $oldcfg{'daytime_hosts'} || $oldcfg{'time_hosts'};
|
||||
+#$def = $oldcfg{'daytime_hosts'} || $oldcfg{'time_hosts'};
|
||||
|
||||
-$cfg{'daytime_hosts'} = get_host_list($msg,$def);
|
||||
+#$cfg{'daytime_hosts'} = get_host_list($msg,$def);
|
||||
+$cfg{'daytime_hosts'} = [];
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
@@ -318,9 +327,10 @@
|
||||
FTP proxy hostname :
|
||||
EDQ
|
||||
|
||||
-$def = $oldcfg{'ftp_firewall'} || $ENV{FTP_FIREWALL};
|
||||
+#$def = $oldcfg{'ftp_firewall'} || $ENV{FTP_FIREWALL};
|
||||
|
||||
-$cfg{'ftp_firewall'} = get_hostname($msg,$def);
|
||||
+#$cfg{'ftp_firewall'} = get_hostname($msg,$def);
|
||||
+$cfg{'ftp_firewall'} = $ENV{FTP_FIREWALL};
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
@@ -341,37 +351,39 @@
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
-print <<EDQ;
|
||||
-
|
||||
-Normally when FTP needs a data connection the client tells the server
|
||||
-a port to connect to, and the server initiates a connection to the client.
|
||||
-
|
||||
-Some setups, in particular firewall setups, can/do not work using this
|
||||
-protocol. In these situations the client must make the connection to the
|
||||
-server, this is called a passive transfer.
|
||||
-EDQ
|
||||
+#print <<EDQ;
|
||||
+#
|
||||
+#Normally when FTP needs a data connection the client tells the server
|
||||
+#a port to connect to, and the server initiates a connection to the client.
|
||||
+#
|
||||
+#Some setups, in particular firewall setups, can/do not work using this
|
||||
+#protocol. In these situations the client must make the connection to the
|
||||
+#server, this is called a passive transfer.
|
||||
+#EDQ
|
||||
|
||||
$msg = "\nShould all FTP connections via a firewall/proxy be passive (y|n) ?";
|
||||
|
||||
-$def = $oldcfg{'ftp_ext_passive'} || 0;
|
||||
+#$def = $oldcfg{'ftp_ext_passive'} || 0;
|
||||
|
||||
-$cfg{'ftp_ext_passive'} = get_bool($msg,$def);
|
||||
+#$cfg{'ftp_ext_passive'} = get_bool($msg,$def);
|
||||
|
||||
|
||||
-$def = $oldcfg{'ftp_int_passive'} || 0;
|
||||
+#$def = $oldcfg{'ftp_int_passive'} || 0;
|
||||
|
||||
$msg = "\nShould all other FTP connections be passive (y|n) ?";
|
||||
|
||||
-$cfg{'ftp_int_passive'} = get_bool($msg,$def);
|
||||
+#$cfg{'ftp_int_passive'} = get_bool($msg,$def);
|
||||
+$cfg{'ftp_int_passive'} = 0;
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
-$def = $oldcfg{'inet_domain'} || $ENV{LOCALDOMAIN};
|
||||
+#$def = $oldcfg{'inet_domain'} || $ENV{LOCALDOMAIN};
|
||||
|
||||
-$ans = Prompt("\nWhat is your local internet domain name :",$def);
|
||||
+#$ans = Prompt("\nWhat is your local internet domain name :",$def);
|
||||
|
||||
-$cfg{'inet_domain'} = ($ans =~ /(\S+)/)[0];
|
||||
+#$cfg{'inet_domain'} = ($ans =~ /(\S+)/)[0];
|
||||
+$cfg{'inet_domain'} = "";
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
@@ -387,7 +399,8 @@
|
||||
Do you want me to run these tests (y|n) ?
|
||||
EDQ
|
||||
|
||||
-$cfg{'test_hosts'} = get_bool($msg,$oldcfg{'test_hosts'});
|
||||
+#$cfg{'test_hosts'} = get_bool($msg,$oldcfg{'test_hosts'});
|
||||
+$cfg{'test_hosts'} = 0;
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
|
@ -84,4 +84,3 @@ Net::Telnet - Defines constants for the telnet protocol
|
||||
|
||||
Currently it just exports constants used in the telnet
|
||||
protocol.
|
||||
|
||||
|
@ -1,119 +1,32 @@
|
||||
lib/perl5/site_perl/i386-freebsd/Net/Config.pm
|
||||
lib/perl5/site_perl/auto/Net/FTP/new.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/quit.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/DESTROY.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/ascii.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/binary.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/ebcdic.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/byte.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/quot.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/mdtm.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/size.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/login.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/account.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/authorize.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/rename.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/type.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/abort.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/get.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/cwd.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/cdup.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/pwd.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/rmdir.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/mkdir.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/delete.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/put.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/put_unique.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/append.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/nlst.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/list.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/retr.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/stor.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/stou.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/appe.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_store_cmd.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/port.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/ls.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/dir.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/pasv.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/unique_name.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/supported.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/lsl.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/authorise.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_extract_path.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_dataconn.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_list_cmd.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_data_cmd.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/debug_text.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/command.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/response.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/parse_response.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/pasv_xfer.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/pasv_wait.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/cmd.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_ABOR.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_CDUP.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_NOOP.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_PASV.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_QUIT.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_DELE.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_CWD.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_PORT.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_RMD.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_MKD.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_PWD.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_TYPE.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_RNTO.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_ACCT.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_RESP.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_MDTM.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_SIZE.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_HELP.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_APPE.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_LIST.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_NLST.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_RETR.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_STOR.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_STOU.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_RNFR.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_REST.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_USER.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_PASS.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_AUTH.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_ALLO.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_SMNT.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_MODE.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_SITE.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_SYST.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_STAT.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_STRU.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/_REIN.al
|
||||
lib/perl5/site_perl/auto/Net/FTP/autosplit.ix
|
||||
lib/perl5/site_perl/Net/DummyInetd.pm
|
||||
lib/perl5/site_perl/Net/NNTP.pm
|
||||
lib/perl5/site_perl/Net/FTP/dataconn.pm
|
||||
lib/perl5/site_perl/Net/FTP/I.pm
|
||||
lib/perl5/site_perl/Net/FTP/L.pm
|
||||
lib/perl5/site_perl/Net/FTP/A.pm
|
||||
lib/perl5/site_perl/Net/FTP/E.pm
|
||||
lib/perl5/site_perl/Net/SNPP.pm
|
||||
lib/perl5/site_perl/Net/POP3.pm
|
||||
lib/perl5/site_perl/Net/SMTP.pm
|
||||
lib/perl5/site_perl/Net/FTP.pm
|
||||
lib/perl5/site_perl/Net/Time.pm
|
||||
lib/perl5/site_perl/Net/Cmd.pm
|
||||
lib/perl5/site_perl/Net/Domain.pm
|
||||
lib/perl5/site_perl/Net/PH.pm
|
||||
lib/perl5/site_perl/Net/DummyInetd.pm
|
||||
lib/perl5/site_perl/Net/FTP.pm
|
||||
lib/perl5/site_perl/Net/NNTP.pm
|
||||
lib/perl5/site_perl/Net/Netrc.pm
|
||||
lib/perl5/man/man3/Net::Time.3.gz
|
||||
lib/perl5/man/man3/Net::NNTP.3.gz
|
||||
lib/perl5/site_perl/Net/PH.pm
|
||||
lib/perl5/site_perl/Net/POP3.pm
|
||||
lib/perl5/site_perl/Net/SMTP.pm
|
||||
lib/perl5/site_perl/Net/SNPP.pm
|
||||
lib/perl5/site_perl/Net/Telnet.pm
|
||||
lib/perl5/site_perl/Net/Time.pm
|
||||
lib/perl5/site_perl/Net/FTP/A.pm
|
||||
lib/perl5/site_perl/Net/FTP/E.pm
|
||||
lib/perl5/site_perl/Net/FTP/I.pm
|
||||
lib/perl5/site_perl/Net/FTP/L.pm
|
||||
lib/perl5/site_perl/Net/FTP/dataconn.pm
|
||||
lib/perl5/man/man3/FAQ.3.gz
|
||||
lib/perl5/man/man3/Net::Cmd.3.gz
|
||||
lib/perl5/man/man3/Net::Domain.3.gz
|
||||
lib/perl5/man/man3/Net::DummyInetd.3.gz
|
||||
lib/perl5/man/man3/Net::SNPP.3.gz
|
||||
lib/perl5/man/man3/Net::FTP.3.gz
|
||||
lib/perl5/man/man3/Net::NNTP.3.gz
|
||||
lib/perl5/man/man3/Net::Netrc.3.gz
|
||||
lib/perl5/man/man3/Net::PH.3.gz
|
||||
lib/perl5/man/man3/Net::POP3.3.gz
|
||||
lib/perl5/man/man3/Net::SMTP.3.gz
|
||||
lib/perl5/man/man3/Net::Cmd.3.gz
|
||||
lib/perl5/man/man3/Net::PH.3.gz
|
||||
lib/perl5/man/man3/Net::Domain.3.gz
|
||||
lib/perl5/man/man3/Net::FTP.3.gz
|
||||
lib/perl5/man/man3/Net::Netrc.3.gz
|
||||
lib/perl5/man/man3/Net::SNPP.3.gz
|
||||
lib/perl5/man/man3/Net::Time.3.gz
|
||||
lib/perl5/site_perl/i386-freebsd/Net/Config.pm
|
||||
lib/perl5/site_perl/i386-freebsd/auto/Net/.packlist
|
||||
@dirrm lib/perl5/site_perl/Net/FTP
|
||||
|
Loading…
Reference in New Issue
Block a user