diff options
| author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-24 09:48:31 -0700 |
|---|---|---|
| committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-24 09:48:31 -0700 |
| commit | f9474d9b06e9b39a3e1f291af50b6d33e7f8d10a (patch) | |
| tree | 31e651de8960249e4c19500e3249624a9b8a65ec /Bugzilla | |
| parent | e1865d8d3059f01bedd532fb6260573912560510 (diff) | |
| download | bugs-f9474d9b06e9b39a3e1f291af50b6d33e7f8d10a.tar bugs-f9474d9b06e9b39a3e1f291af50b6d33e7f8d10a.tar.gz bugs-f9474d9b06e9b39a3e1f291af50b6d33e7f8d10a.tar.bz2 bugs-f9474d9b06e9b39a3e1f291af50b6d33e7f8d10a.tar.xz bugs-f9474d9b06e9b39a3e1f291af50b6d33e7f8d10a.zip | |
Bug 574376: Make checksetup.pl recommend JSON::XS to speed up the JSON-RPC
WebService
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'Bugzilla')
| -rw-r--r-- | Bugzilla/Install/Requirements.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index badf63c40..00077a5a9 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -239,6 +239,13 @@ sub OPTIONAL_MODULES { feature => ['jsonrpc'], }, { + package => 'JSON-XS', + module => 'JSON::XS', + # 2.0 is the first version that will work with JSON::RPC. + version => '2.0', + feature => ['jsonrpc_faster'], + }, + { package => 'Test-Taint', module => 'Test::Taint', version => 0, |
