Remove 3.4 compatibility hacks from Shorewall-perl

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6805 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep
2007-07-08 15:58:13 +00:00
parent ce6ebfdc0a
commit 0251c3729e
3 changed files with 10 additions and 15 deletions

View File

@ -33,16 +33,6 @@
# --timestamp # Timestamp all progress messages
# --debug # Print stack trace on warnings and fatal error.
#
# Default values for compiler options are given in environmental variables as follows:
#
# Option Variable
#
# --verbosity VERBOSE
# --export EXPORT
# --directory SHOREWALL_DIR
# --timestamp TIMESTAMP
# --debug <none>
#
use strict;
use lib '/usr/share/shorewall-perl';
use Shorewall::Compiler;
@ -56,10 +46,10 @@ sub usage() {
#
# E x e c u t i o n B e g i n s H e r e
#
my $export = $ENV{EXPORT} || 0;
my $shorewall_dir = $ENV{SHOREWALL_DIR} || '';
my $verbose = $ENV{VERBOSE} || 0;
my $timestamp = $ENV{TIMESTAMP} || '';
my $export = 0;
my $shorewall_dir = '';
my $verbose = 0;
my $timestamp = '';
my $debug = 0;
Getopt::Long::Configure ('bundling');