diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-07-04 00:45:19 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-07-04 00:45:19 +0200 |
commit | 1b0d24407e618c4cc0ad1c6e176f5aca3803f7c9 (patch) | |
tree | e8cce604e6f1f435f5ca1aeefb4ca46f9669a4da /Bugzilla/Install | |
parent | 08f32ca19c69416cfaa596a2ba1d72ce8fce1008 (diff) | |
download | bugs-1b0d24407e618c4cc0ad1c6e176f5aca3803f7c9.tar bugs-1b0d24407e618c4cc0ad1c6e176f5aca3803f7c9.tar.gz bugs-1b0d24407e618c4cc0ad1c6e176f5aca3803f7c9.tar.bz2 bugs-1b0d24407e618c4cc0ad1c6e176f5aca3803f7c9.tar.xz bugs-1b0d24407e618c4cc0ad1c6e176f5aca3803f7c9.zip |
Bug 760562: Integrate TypeSniffer into core codebase (auto-detect attachment MIME type)
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 265b04d66..c5abf1986 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -360,6 +360,20 @@ sub OPTIONAL_MODULES { version => '0.96', feature => ['mod_perl'], }, + + # typesniffer + { + package => 'File-MimeInfo', + module => 'File::MimeInfo::Magic', + version => '0', + feature => ['typesniffer'], + }, + { + package => 'IO-stringy', + module => 'IO::Scalar', + version => '0', + feature => ['typesniffer'], + }, ); my $extra_modules = _get_extension_requirements('OPTIONAL_MODULES'); |