Disable/deprecate old mogadm stats command.
[MogileFS-Server.git] / Makefile.PL
blob3e609070ec71b26dbfe08edd80edfa4659057335
1 #!/usr/bin/perl
3 # Perl Makefile for MogileFS
4 # $Id$
6 # Invoke with 'perl Makefile.PL'
8 # See ExtUtils::MakeMaker (3) for more information on how to influence
9 # the contents of the Makefile that is written
12 use ExtUtils::MakeMaker;
14 my $exefiles = ["mogstored", "mogilefsd", "mogdbsetup", "mogautomount"];
15 $exefiles = ["mogstored"] if exists $ENV{DANGABUILD_MOGSTOREDONLY};
16 $exefiles = ["mogilefsd"] if exists $ENV{DANGABUILD_MOGILEFSDONLY};
18 WriteMakefile(
19 NAME => 'mogilefs-server',
20 VERSION_FROM => 'lib/MogileFS/Server.pm',
21 AUTHOR => 'Brad Fitzpatrick <brad@danga.com>',
22 ABSTRACT_FROM => 'lib/MogileFS/Server.pm',
23 EXE_FILES => $exefiles,
24 PREREQ_PM => {
25 'Danga::Socket' => '1.56',
26 'Perlbal' => '1.73',
27 'Sys::Syslog' => 0,
28 'Sys::Syscall' => '0.22',
29 'Getopt::Long' => 0,
30 'Symbol' => 0,
31 'Net::Netmask' => 0,
32 fields => 0,
34 META_MERGE => {
35 no_index => {
36 directory => 'lib/mogdeps',
37 package => ['ProcessHandle', 'TrackerHandle', 'MogstoredHandle',
38 'MogPath', 'Mgd'],