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

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
This commit is contained in:
mkanat%bugzilla.org 2007-03-26 04:30:51 +00:00
Родитель cc2acf1711
Коммит 79137f662b
2 изменённых файлов: 8 добавлений и 5 удалений

Просмотреть файл

@ -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;