package Apache::PassThru;
# File: Apache/PassThru/Makefile.PL

use ExtUtils::MakeMaker;
use Apache::ExtUtils qw(command_table);
use Apache::src ();

my @directives = ( 
	 	  { name     => 'PerlPassThru',
		    errmsg   => 'a local path and a remote URI to pass through to',
                    args_how => 'TAKE2',
		    req_override => 'RSRC_CONF'
		  },
		 );

command_table(\@directives);

WriteMakefile(
    'NAME'	=> __PACKAGE__,
    'VERSION_FROM' => 'PassThru.pm',
    'INC'	=> Apache::src->new->inc,
);
__END__
