Commit 0a152b41 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 375357: GD::Graph requires GD::Text (not vice-versa)

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
parent bc122c09
......@@ -121,14 +121,14 @@ sub OPTIONAL_MODULES {
feature => 'Graphical Reports'
},
{
package => 'GDGraph',
module => 'GD::Graph',
package => 'GDTextUtil',
module => 'GD::Text',
version => 0,
feature => 'Graphical Reports'
},
{
package => 'GDTextUtil',
module => 'GD::Text',
{
package => 'GDGraph',
module => 'GD::Graph',
version => 0,
feature => 'Graphical Reports'
},
......
......@@ -44,6 +44,9 @@
use strict;
use 5.008;
# If we've installed modules into the local directory, we want to
# be sure that the local directory comes first in @INC.
use lib '.';
use File::Basename;
use Getopt::Long qw(:config bundling);
use Pod::Usage;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment