summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Apache/Config/Preproc/compact.pm2
-rw-r--r--lib/Apache/Config/Preproc/ifdefine.pm2
-rw-r--r--lib/Apache/Config/Preproc/ifmodule.pm2
-rw-r--r--lib/Apache/Config/Preproc/include.pm2
-rw-r--r--lib/Apache/Config/Preproc/macro.pm2
5 files changed, 10 insertions, 0 deletions
diff --git a/lib/Apache/Config/Preproc/compact.pm b/lib/Apache/Config/Preproc/compact.pm
index 22fccc7..40fa1e6 100644
--- a/lib/Apache/Config/Preproc/compact.pm
+++ b/lib/Apache/Config/Preproc/compact.pm
@@ -3,6 +3,8 @@ use strict;
3use warnings; 3use warnings;
4use Carp; 4use Carp;
5 5
6our $VERSION = '1.01';
7
6sub new { 8sub new {
7 croak "too many arguments" unless @_ == 2; 9 croak "too many arguments" unless @_ == 2;
8 bless {}, shift 10 bless {}, shift
diff --git a/lib/Apache/Config/Preproc/ifdefine.pm b/lib/Apache/Config/Preproc/ifdefine.pm
index 5bf3a3f..7cd5ae1 100644
--- a/lib/Apache/Config/Preproc/ifdefine.pm
+++ b/lib/Apache/Config/Preproc/ifdefine.pm
@@ -3,6 +3,8 @@ use strict;
3use warnings; 3use warnings;
4use Carp; 4use Carp;
5 5
6our $VERSION = '1.01';
7
6sub new { 8sub new {
7 my $class = shift; 9 my $class = shift;
8 my $conf = shift; 10 my $conf = shift;
diff --git a/lib/Apache/Config/Preproc/ifmodule.pm b/lib/Apache/Config/Preproc/ifmodule.pm
index 3676236..5ec925a 100644
--- a/lib/Apache/Config/Preproc/ifmodule.pm
+++ b/lib/Apache/Config/Preproc/ifmodule.pm
@@ -4,6 +4,8 @@ use warnings;
4use Carp; 4use Carp;
5use IPC::Open3; 5use IPC::Open3;
6 6
7our $VERSION = '1.01';
8
7sub new { 9sub new {
8 my $class = shift; 10 my $class = shift;
9 my $conf = shift; 11 my $conf = shift;
diff --git a/lib/Apache/Config/Preproc/include.pm b/lib/Apache/Config/Preproc/include.pm
index f7c851c..55b3bd2 100644
--- a/lib/Apache/Config/Preproc/include.pm
+++ b/lib/Apache/Config/Preproc/include.pm
@@ -7,6 +7,8 @@ use File::Spec;
7use Cwd 'abs_path'; 7use Cwd 'abs_path';
8use Carp; 8use Carp;
9 9
10our $VERSION = '1.01';
11
10sub new { 12sub new {
11 my $class = shift; 13 my $class = shift;
12 my $conf = shift; 14 my $conf = shift;
diff --git a/lib/Apache/Config/Preproc/macro.pm b/lib/Apache/Config/Preproc/macro.pm
index c0538d0..c8d09a9 100644
--- a/lib/Apache/Config/Preproc/macro.pm
+++ b/lib/Apache/Config/Preproc/macro.pm
@@ -4,6 +4,8 @@ use warnings;
4use Text::ParseWords; 4use Text::ParseWords;
5use Carp; 5use Carp;
6 6
7our $VERSION = '1.01';
8
7sub new { 9sub new {
8 my $self = bless { keep => {} }, shift; 10 my $self = bless { keep => {} }, shift;
9 shift; # Skip the ref to tree root 11 shift; # Skip the ref to tree root

Return to:

Send suggestions and report system problems to the System administrator.