I'm having a spot of bother with the installation of Template Toolkit on 
Solaris 2.8.

I have done this before in the past, without a problem. It could be that 
something is up with my gcc or library paths.

I'm using a $ENV{PERL5LIB} LIB and PREFIX as I don't have root on this system. 
The problem seems to be in bootstrapping Stash::XS; everything seems to be the 
right version, but it's picking up a stray version 2.08 from somewhere. I am at 
the limits of my knowledge for investigating this. Any suggestions or help 
would be much appreciated.

Ivor.

[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: echo $PERL5LIB
/home/williami/perl/lib
[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: perl Makefile.PL 
LIB=~/perl/lib PREFIX=~/perl

                    Template Toolkit Version 2.14
                    =============================

Using Unix defaults.

Run 'perl Makefile.PL TT_HELP' for a summary of options.

External Modules
----------------

The Template Toolkit includes a number of plugin modules, some of
which interface to external Perl modules available from CPAN.  All the
plugins will be installed regardless so that they will automatically
work as and when you install the relevant modules.  The tests will be
skipped for plugins that require external modules not currently
available on your system.

  Text::Autoformat [X] version 1.13 installed
  GD               [ ] module not installed
  GD::Text         [ ] module not installed
  GD::Graph        [ ] module not installed
  GD::Graph3d      [ ] module not installed
  Image::Info      [ ] module not installed
  Image::Size      [ ] module not installed
  Date::Calc       [X] version 5.4 installed
  Pod::POM         [X] version 0.17 installed
  Tie::DBI         [X] version 1.01 installed
  XML::DOM         [X] version 1.44 installed
  XML::RSS         [X] version 1.02 installed
  XML::XPath       [X] version 1.13 installed
  DBI              [X] version 1.48 installed, configuring tests

Do you want to run the DBI tests?
It requires access to an existing test database. [y] n

writing t/dbi_test.cfg


XS Stash: TT2 now twice as fast!
--------------------------------

We have a new high speed version of the Template::Stash. It's 
a Perl XS module which can evaluate templates about twice as fast as 
the pure-Perl version.  It is stable and reliable but be warned that
it doesn't yet support access to tied hashes (e.g. Tie::DBI) so for
certain applications you may need to explicitly use the regular stash.

You can choose to build the XS stash module and enable it by default
so that it is used automatically for all templates.  If you build it
but don't enable it by default then you can use it something like
this:

    use Template;
    use Template::Stash::XS;

    my $tt = new Template ({ STASH => new Template::Stash::XS, ... });

You can also enable the XS stash (or the regular stash if you opt to
use the XS stash by default) by setting the $STASH package variable
in the Template/Config.pm module.  See 'perldoc Template::Config' for
further details.

Do you want to build the XS Stash module? [y] 
Do you want to use the XS Stash for all Templates? [y] 


LaTeX Support
-------------

TT2 supports PDF, DVI and PostScript output using the latex filter,
implemented with the programs pdflatex, latex and dvips.

Because the latex filter runs latex and pdflatex, template authors could
use this feature to include any arbitrary file in their latex input, or
also open an arbitrary output file, independent of the ABSOLUTE or
RELATIVE configuration settings. This might create a security concern at
your site. If you don't trust your template authors then don't enable
the latex filter.

I found the following locations for pdflatex, latex and dvips:
  + pdflatex => 
  + latex    => 
  + dvips    => 

Do you want to enable the latex filter? [n] 


Optional Extras
---------------

In additional to the Perl modules and POD documentation installed in
the usual way, the Template Toolkit distribution also contains a
number of optional components:

  * Template libaries for basic HTML, Pod -> HTML, and PostScript

  * Splash! - a stylish HTML user interface template library / widget set

  * HTML documentation - distributed in template form for customisation

  * Stylesheet templates to generate docs as vanilla HTML or using Splash!

  * Examples - numerous examples of using the template libraries

If you want to install these optional components then you'll need to 
specify a separate directory for them.

Do you want to install these components? [y] 

You can chose any directory for the installation of the additional
Template Toolkit components.  The proposed default assumes a Unix
flavour to your operating system (suggestions for suitable defaults
for other platforms welcome).

Installation directory [/usr/local/tt2] 


Splash!
-------

The Splash! template library uses a number of (very) small images to
build user interface components.  These will be installed into the
directory:

    /usr/local/tt2/images  

If you want to use the Splash! library then you'll need to copy these
images, define an alias (e.g. in the httpd.conf) or create a symbolic
link to them so that your web server can find them.  Then you'll need
to specify the resulting URL which can be used to retrieve them from
the web server.

Typical values might be '/tt2/images', '/images/tt2', '/~user/tt2/images'
or even something like 'http://www.yourhost.org/images/tt2'.

(NOTE: If this is too much for you to think about right now, then
accept the default below and read the Template::Library::Splash
manpage at your leisure to find out more).

URL base for TT2 images? [/tt2/images] 


HTML Documentation
------------------

The modules comprising the Template Toolkit contain comprehensive POD
documentation which can be browsed using 'perldoc' or 'man' (if your
system supports it).  In additional, the distribution also includes a
set of source templates and style elements for generating the same
documentation in HTML format.  These will be installed in the
directory:

    /usr/local/tt2/docs

The HTML documentation can be built for you at "make install" time in
a plain and simple HTML format or using the Splash! library.  You can
see examples of these different styles and browse the documentation
online at:

    http://www.template-toolkit.org/docs/

Do you want to build the HTML documentation? [y] 

If you want to build the HTML documentation using the Splash! library
then you'll need to make sure you correctly defined the URL for the
Splash!  images above.  Otherwise, answer 'n' to the next question to
use plain HTML.

Do you want to use the Splash! library? [y] 

Which Splash! colour scheme would you like to use to build the
documentation?  Acceptable values are:

  Name     Colours
  -------------------------
  default  lilac/mauve
  aqua     aqua/marine
  blue     grey75/blue75
  green    grey75/green75
  grey     grey75/grey50
  leon     red75/orange/white/black
  red      grey75/red75

Enter name of colour scheme:  [default] 


HTML Examples
-------------

A number of examples showing use of the HTML, Splash! and PostScript 
libraries will be installed into:

    /usr/local/tt2/examples

As with the documentation, the examples are provided in template form
and can be automatically built into HTML pages during the "make
install".  These pages rely on the Splash! library and expect the
images URL to be correctly defined for correct viewing.

Do you want to build the HTML example pages? [y] 

Checking if your kit is complete...
Looks good
Checking if your kit is complete...
Looks good
Writing Makefile for Template::Stash::XS
Writing Makefile for Template

Configuration complete.  You should now run 'make', 'make test' and 
then 'make install'.   See the README file for further information.


Installation Notes
------------------

Please note that the installation of the optional components and
building of the HTML documentation is performed at the "make install"
stage as the effective user at that time.  This implies that this user
must have sufficient permission to install into the specified
directory and that all created directories and files will be owned by
them.

[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: make
cp lib/Template/Test.pm blib/lib/Template/Test.pm
cp lib/Template/Exception.pm blib/lib/Template/Exception.pm
cp lib/Template/Manual/Filters.pod blib/lib/Template/Manual/Filters.pod
cp lib/Template/Manual/Variables.pod blib/lib/Template/Manual/Variables.pod
cp lib/Template/Plugin/Date.pm blib/lib/Template/Plugin/Date.pm
cp lib/Template/Plugin/GD/Graph/linespoints.pm 
blib/lib/Template/Plugin/GD/Graph/linespoints.pm
cp lib/Template/Plugin/GD/Image.pm blib/lib/Template/Plugin/GD/Image.pm
cp lib/Template/Plugin/GD/Graph/points.pm 
blib/lib/Template/Plugin/GD/Graph/points.pm
cp lib/Template/Context.pm blib/lib/Template/Context.pm
cp lib/Template/Modules.pod blib/lib/Template/Modules.pod
cp lib/Template/Config.pm blib/lib/Template/Config.pm
cp lib/Template/Iterator.pm blib/lib/Template/Iterator.pm
cp lib/Template/Plugin/GD/Graph/pie.pm blib/lib/Template/Plugin/GD/Graph/pie.pm
cp lib/Template/Tutorial.pod blib/lib/Template/Tutorial.pod
cp lib/Template/Plugin/XML/Style.pm blib/lib/Template/Plugin/XML/Style.pm
cp lib/Template/Manual/Plugins.pod blib/lib/Template/Manual/Plugins.pod
cp lib/Template/FAQ.pod blib/lib/Template/FAQ.pod
cp lib/Template/Manual/Directives.pod blib/lib/Template/Manual/Directives.pod
cp lib/Template/Plugin/URL.pm blib/lib/Template/Plugin/URL.pm
cp lib/Template/Plugin/Format.pm blib/lib/Template/Plugin/Format.pm
cp lib/Template/Tutorial/Datafile.pod blib/lib/Template/Tutorial/Datafile.pod
cp lib/Template/Plugin/Table.pm blib/lib/Template/Plugin/Table.pm
cp lib/Template/Plugin/XML/Simple.pm blib/lib/Template/Plugin/XML/Simple.pm
cp lib/Template/Library/HTML.pod blib/lib/Template/Library/HTML.pod
cp lib/Template/Plugin/GD/Polygon.pm blib/lib/Template/Plugin/GD/Polygon.pm
cp lib/Template/Plugin/XML/XPath.pm blib/lib/Template/Plugin/XML/XPath.pm
cp lib/Template/Plugin/GD/Graph/lines.pm 
blib/lib/Template/Plugin/GD/Graph/lines.pm
cp lib/Template/Stash/Context.pm blib/lib/Template/Stash/Context.pm
cp lib/Template/Plugin/CGI.pm blib/lib/Template/Plugin/CGI.pm
cp lib/Template/Plugin/View.pm blib/lib/Template/Plugin/View.pm
cp lib/Template/Base.pm blib/lib/Template/Base.pm
cp lib/Template/Plugin/String.pm blib/lib/Template/Plugin/String.pm
cp lib/Template/Plugin/GD/Text.pm blib/lib/Template/Plugin/GD/Text.pm
cp lib/Template/Plugin/GD/Graph/mixed.pm 
blib/lib/Template/Plugin/GD/Graph/mixed.pm
cp lib/Template/Service.pm blib/lib/Template/Service.pm
cp lib/Template/Plugin/Datafile.pm blib/lib/Template/Plugin/Datafile.pm
cp lib/Template/Plugin/Dumper.pm blib/lib/Template/Plugin/Dumper.pm
cp lib/Template/Manual/Internals.pod blib/lib/Template/Manual/Internals.pod
cp lib/Template/Namespace/Constants.pm blib/lib/Template/Namespace/Constants.pm
cp lib/Template/Parser.pm blib/lib/Template/Parser.pm
cp lib/Template/Plugin/DBI.pm blib/lib/Template/Plugin/DBI.pm
cp lib/Template/Plugin/GD/Graph/pie3d.pm 
blib/lib/Template/Plugin/GD/Graph/pie3d.pm
cp lib/Template/Tools/ttree.pod blib/lib/Template/Tools/ttree.pod
cp lib/Template/Plugin/XML/RSS.pm blib/lib/Template/Plugin/XML/RSS.pm
cp lib/Template/Plugin/Autoformat.pm blib/lib/Template/Plugin/Autoformat.pm
cp lib/Template/Plugin.pm blib/lib/Template/Plugin.pm
cp lib/Template/Plugin/Procedural.pm blib/lib/Template/Plugin/Procedural.pm
cp lib/Template/Stash/XS.pm blib/lib/Template/Stash/XS.pm
cp lib/Template/Plugin/GD/Constants.pm blib/lib/Template/Plugin/GD/Constants.pm
cp lib/Template/Plugin/HTML.pm blib/lib/Template/Plugin/HTML.pm
cp lib/Template/Manual.pod blib/lib/Template/Manual.pod
cp lib/Template/Plugin/GD/Text/Align.pm 
blib/lib/Template/Plugin/GD/Text/Align.pm
cp lib/Template/Manual/VMethods.pod blib/lib/Template/Manual/VMethods.pod
cp lib/Template/Grammar.pm blib/lib/Template/Grammar.pm
cp lib/Template/Document.pm blib/lib/Template/Document.pm
cp lib/Template/Provider.pm blib/lib/Template/Provider.pm
cp lib/Template/Manual/Intro.pod blib/lib/Template/Manual/Intro.pod
cp lib/Template/Plugin/Iterator.pm blib/lib/Template/Plugin/Iterator.pm
cp lib/Template/Plugin/GD/Text/Wrap.pm blib/lib/Template/Plugin/GD/Text/Wrap.pm
cp lib/Template/Library/Splash.pod blib/lib/Template/Library/Splash.pod
cp lib/Template/Library/PostScript.pod blib/lib/Template/Library/PostScript.pod
cp lib/Template/Plugin/Pod.pm blib/lib/Template/Plugin/Pod.pm
cp lib/Template/Tools/tpage.pod blib/lib/Template/Tools/tpage.pod
cp lib/Template/Plugin/GD/Graph/area.pm 
blib/lib/Template/Plugin/GD/Graph/area.pm
cp lib/Template/Plugin/File.pm blib/lib/Template/Plugin/File.pm
cp lib/Template/Tutorial/Web.pod blib/lib/Template/Tutorial/Web.pod
cp lib/Template.pm blib/lib/Template.pm
cp lib/Template/Plugin/Filter.pm blib/lib/Template/Plugin/Filter.pm
cp lib/Template/Constants.pm blib/lib/Template/Constants.pm
cp lib/Template/Plugin/Image.pm blib/lib/Template/Plugin/Image.pm
cp lib/Template/Filters.pm blib/lib/Template/Filters.pm
cp lib/Template/Manual/Config.pod blib/lib/Template/Manual/Config.pod
cp lib/Template/Manual/Views.pod blib/lib/Template/Manual/Views.pod
cp lib/Template/Manual/Credits.pod blib/lib/Template/Manual/Credits.pod
cp lib/Template/Manual/Syntax.pod blib/lib/Template/Manual/Syntax.pod
cp lib/Template/Stash.pm blib/lib/Template/Stash.pm
cp lib/Template/Plugin/GD/Graph/lines3d.pm 
blib/lib/Template/Plugin/GD/Graph/lines3d.pm
cp lib/Template/View.pm blib/lib/Template/View.pm
cp lib/Template/Plugins.pm blib/lib/Template/Plugins.pm
cp lib/Template/Plugin/Directory.pm blib/lib/Template/Plugin/Directory.pm
cp lib/Template/Plugin/GD/Graph/bars3d.pm 
blib/lib/Template/Plugin/GD/Graph/bars3d.pm
cp lib/Template/Plugin/Wrap.pm blib/lib/Template/Plugin/Wrap.pm
cp lib/Template/Directive.pm blib/lib/Template/Directive.pm
cp lib/Template/Manual/Refs.pod blib/lib/Template/Manual/Refs.pod
cp lib/Template/Plugin/GD/Graph/bars.pm 
blib/lib/Template/Plugin/GD/Graph/bars.pm
cp lib/Template/Plugin/XML/DOM.pm blib/lib/Template/Plugin/XML/DOM.pm
/usr/local/bin/perl /home/williami/perl/lib/ExtUtils/xsubpp  -typemap 
/usr/local/lib/perl5/5.6.1/ExtUtils/typemap  Stash.xs > Stash.xsc && mv 
Stash.xsc Stash.c
gcc -c    -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -O    -DVERSION=\"2.14\"  -DXS_VERSION=\"2.14\" -fPIC 
"-I/usr/local/lib/perl5/5.6.1/sun4-solaris/CORE"   Stash.c
Running Mkbootstrap for Template::Stash::XS ()
chmod 644 XS.bs
rm -f ../blib/arch/auto/Template/Stash/XS/XS.so
gcc  -G -L/usr/local/lib Stash.o  -o ../blib/arch/auto/Template/Stash/XS/XS.so  
\
        \
  
chmod 755 ../blib/arch/auto/Template/Stash/XS/XS.so
cp XS.bs ../blib/arch/auto/Template/Stash/XS/XS.bs
chmod 644 ../blib/arch/auto/Template/Stash/XS/XS.bs
cp bin/ttree blib/script/ttree
/usr/local/bin/perl "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/ttree
cp bin/tpage blib/script/tpage
/usr/local/bin/perl "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/tpage
Manifying blib/man1/ttree.1
Manifying blib/man1/tpage.1
Manifying blib/man3/Template::Test.3
Manifying blib/man3/Template::Plugin::Date.3
Manifying blib/man3/Template::Manual::Variables.3
Manifying blib/man3/Template::Manual::Filters.3
Manifying blib/man3/Template::Exception.3
Manifying blib/man3/Template::Plugin::GD::Graph::linespoints.3
Manifying blib/man3/Template::Plugin::GD::Image.3
Manifying blib/man3/Template::Plugin::GD::Graph::points.3
Manifying blib/man3/Template::Context.3
Manifying blib/man3/Template::Modules.3
Manifying blib/man3/Template::Config.3
Manifying blib/man3/Template::Iterator.3
Manifying blib/man3/Template::Plugin::GD::Graph::pie.3
Manifying blib/man3/Template::Tutorial.3
Manifying blib/man3/Template::Plugin::XML::Style.3
Manifying blib/man3/Template::Manual::Plugins.3
Manifying blib/man3/Template::Plugin::Format.3
Manifying blib/man3/Template::Plugin::URL.3
Manifying blib/man3/Template::Manual::Directives.3
Manifying blib/man3/Template::FAQ.3
Manifying blib/man3/Template::Plugin::Table.3
Manifying blib/man3/Template::Tutorial::Datafile.3
Manifying blib/man3/Template::Plugin::XML::Simple.3
Manifying blib/man3/Template::Library::HTML.3
Manifying blib/man3/Template::Plugin::GD::Polygon.3
Manifying blib/man3/Template::Plugin::XML::XPath.3
Manifying blib/man3/Template::Plugin::GD::Graph::lines.3
Manifying blib/man3/Template::Stash::Context.3
Manifying blib/man3/Template::Plugin::CGI.3
Manifying blib/man3/Template::Plugin::View.3
Manifying blib/man3/Template::Base.3
Manifying blib/man3/Template::Plugin::String.3
Manifying blib/man3/Template::Plugin::GD::Text.3
Manifying blib/man3/Template::Plugin::GD::Graph::mixed.3
Manifying blib/man3/Template::Plugin::Datafile.3
Manifying blib/man3/Template::Service.3
Manifying blib/man3/Template::Plugin::Dumper.3
Manifying blib/man3/Template::Namespace::Constants.3
Manifying blib/man3/Template::Manual::Internals.3
Manifying blib/man3/Template::Plugin::DBI.3
Manifying blib/man3/Template::Parser.3
Manifying blib/man3/Template::Plugin::GD::Graph::pie3d.3
Manifying blib/man3/Template::Tools::ttree.3
Manifying blib/man3/Template::Plugin::XML::RSS.3
Manifying blib/man3/Template::Plugin::Autoformat.3
Manifying blib/man3/Template::Plugin.3
Manifying blib/man3/Template::Plugin::Procedural.3
Manifying blib/man3/Template::Stash::XS.3
Manifying blib/man3/Template::Plugin::GD::Constants.3
Manifying blib/man3/Template::Plugin::HTML.3
Manifying blib/man3/Template::Manual.3
Manifying blib/man3/Template::Plugin::GD::Text::Align.3
Manifying blib/man3/Template::Manual::VMethods.3
Manifying blib/man3/Template::Document.3
Manifying blib/man3/Template::Provider.3
Manifying blib/man3/Template::Manual::Intro.3
Manifying blib/man3/Template::Plugin::Iterator.3
Manifying blib/man3/Template::Plugin::GD::Text::Wrap.3
Manifying blib/man3/Template::Library::Splash.3
Manifying blib/man3/Template::Library::PostScript.3
Manifying blib/man3/Template::Plugin::Pod.3
Manifying blib/man3/Template::Tools::tpage.3
Manifying blib/man3/Template::Plugin::GD::Graph::area.3
Manifying blib/man3/Template.3
Manifying blib/man3/Template::Tutorial::Web.3
Manifying blib/man3/Template::Plugin::File.3
Manifying blib/man3/Template::Constants.3
Manifying blib/man3/Template::Plugin::Filter.3
Manifying blib/man3/Template::Plugin::Image.3
Manifying blib/man3/Template::Manual::Config.3
Manifying blib/man3/Template::Filters.3
Manifying blib/man3/Template::Manual::Credits.3
Manifying blib/man3/Template::Manual::Views.3
Manifying blib/man3/Template::Manual::Syntax.3
Manifying blib/man3/Template::Stash.3
Manifying blib/man3/Template::Plugin::GD::Graph::lines3d.3
Manifying blib/man3/Template::View.3
Manifying blib/man3/Template::Plugins.3
Manifying blib/man3/Template::Plugin::GD::Graph::bars3d.3
Manifying blib/man3/Template::Plugin::Directory.3
Manifying blib/man3/Template::Plugin::Wrap.3
Manifying blib/man3/Template::Plugin::GD::Graph::bars.3
Manifying blib/man3/Template::Manual::Refs.3
Manifying blib/man3/Template::Plugin::XML::DOM.3
[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: make test
PERL_DL_NONLAZY=1 /usr/local/bin/perl "-MExtUtils::Command::MM" "-e" 
"test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/args...........ok 1/17failed to create context: failed to create context: 
failed to load Template/Stash/XS.pm: Couldn't load Template::Stash::XS 2.14:

Template::Stash::XS object version 2.08 does not match bootstrap parameter 2.14 
at /usr/local/lib/perl5/5.6.1/sun4-solaris/DynaLoader.pm line 225, <DATA> line 
1.

BEGIN failed--compilation aborted at lib/Template/Stash/XS.pm line 27, <DATA> 
line 1.
Compilation failed in require at lib/Template/Config.pm line 96, <DATA> line 1.

t/args...........dubious                                                     
        Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 2-17
        Failed 16/17 tests, 5.88% okay
t/autoform.......ok 1/25FAILED 21:  - template text 9 did not match expected 
t/autoform.......FAILED test 21                                              
        Failed 1/25 tests, 96.00% okay
t/base...........ok                                                          
t/binop..........ok                                                          
t/block..........ok 1/17failed to create context: failed to create context: 
failed to load Template/Stash/XS.pm: Couldn't load Template::Stash::XS 2.14:

Template::Stash::XS object version 2.08 does not match bootstrap parameter 2.14 
at /usr/local/lib/perl5/5.6.1/sun4-solaris/DynaLoader.pm line 225, <DATA> line 
1.

BEGIN failed--compilation aborted at lib/Template/Stash/XS.pm line 27, <DATA> 
line 1.
Compilation failed in require at lib/Template/Config.pm line 96, <DATA> line 1.

t/block..........dubious                                                     
        Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 2-17
        Failed 16/17 tests, 5.88% okay
t/blocks.........FAILED 2:  - template processor is engaged
Can't call method "process" on an undefined value at lib/Template/Test.pm line 
308, <DATA> line 1.
t/blocks.........dubious                                                     
        Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 2, 4-15
        Failed 13/15 tests, 13.33% okay
t/capture........ok 1/13failed to create context: failed to create context: 
failed to load Template/Stash/XS.pm: Couldn't load Template::Stash::XS 2.14:

[...]

Failed Test   Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/args.t         2   512    17   32 188.24%  2-17
t/autoform.t                25    1   4.00%  21
t/block.t        2   512    17   32 188.24%  2-17
t/blocks.t       2   512    15   25 166.67%  2 4-15
t/capture.t      2   512    13   24 184.62%  2-13
t/case.t         2   512    16   25 156.25%  3 5-16
t/cgi.t                     15    2  13.33%  14-15
t/chomp.t        2   512     3    0   0.00%  ??
t/compile1.t     2   512    13   24 184.62%  2-13
t/compile2.t     2   512     2    2 100.00%  1-2
t/compile3.t     2   512     1    2 200.00%  1
t/compile4.t     2   512    11   20 181.82%  2-11
t/compile5.t     2   512     3    3 100.00%  1-3
t/config.t       2   512    44   42  95.45%  24-44
t/constants.t    2   512     1    1 100.00%  1
t/context.t      2   512    54  108 200.00%  1-54
t/date.t         2   512    33   64 193.94%  2-33
t/debug.t        2   512     7    0   0.00%  ??
t/directive.t    2   512    71  137 192.96%  2 4-71
t/directry.t     2   512    31   60 193.55%  2-31
t/document.t                27    2   7.41%  26-27
t/dom.t          2   512    23   44 191.30%  2-23
t/domview.t      2   512     5    8 160.00%  2-5
t/dumper.t       2   512    15   28 186.67%  2-15
t/evalperl.t     2   512    19   33 173.68%  2 4-19
t/factory.t      2   512     7   12 171.43%  2-7
t/file.t         2   512    25   48 192.00%  2-25
t/filter.t       2   512   146  287 196.58%  2 4-146
t/foreach.t      2   512    91  177 194.51%  2 4-91
t/format.t       2   512    11   20 181.82%  2-11
t/html.t         2   512    18   32 177.78%  3-18
t/iterator.t     2   512    28   28 100.00%  15-28
t/latex2dvi.t  255 65280    ??   ??       %  ??
t/latex2pdf.t  255 65280    ??   ??       %  ??
t/latex2ps.t   255 65280    ??   ??       %  ??
t/leak.t         2   512    39   76 194.87%  2-39
t/list.t         2   512    41   80 195.12%  2-41
t/object.t       2   512    43   84 195.35%  2-43
t/output.t       2   512    14   28 200.00%  1-14
t/plugins.t                 33    4  12.12%  16-19
t/plusfile.t     2   512    15   28 186.67%  2-15
t/pod.t          2   512    17   32 188.24%  2-17
t/prefix.t       2   512    13   24 184.62%  2-13
t/proc.t         2   512     7   12 171.43%  2-7
t/process.t      2   512    11   17 154.55%  2 4-11
t/provider.t     2   512    15    0   0.00%  ??
t/rss.t          2   512    15   28 186.67%  2-15
t/service.t    255 65280    31   57 183.87%  2 4-31
t/skel.t         2   512     8   12 150.00%  3-8
t/stop.t         2   512    17   29 170.59%  2 4-17
t/strcat.t       2   512     5    8 160.00%  2-5
t/string.t       2   512    91  180 197.80%  2-91
t/switch.t       2   512    33   64 193.94%  2-33
t/template.t     2   512     1    1 100.00%  1
t/text.t         2   512    32   57 178.12%  3 5-32
t/throw.t        2   512    13   24 184.62%  2-13
t/try.t          2   512    65  128 196.92%  2-65
t/vars.t         2   512   115  225 195.65%  2 4-115

Failed Test   Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/varsv1.t       2   512    93  181 194.62%  2 4-93
t/view.t         2   512    ??   ??       %  ??
t/vmeth.t        2   512    ??   ??       %  ??
t/while.t        2   512    25   48 192.00%  2-25
t/xmlstyle.t     2   512    33   64 193.94%  2-33
t/xpath.t        2   512    21   40 190.48%  2-21
3 tests skipped.
Failed 64/90 test scripts, 28.89% okay. 1441/2131 subtests failed, 32.38% okay.
*** Error code 11
make: Fatal error: Command failed for target `test_dynamic'
[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: perl -v

This is perl, v5.6.1 built for sun4-solaris

Copyright 1987-2001, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'.  If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.

[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: perl -V
Summary of my perl5 (revision 5.0 version 6 subversion 1) configuration:
  Platform:
    osname=solaris, osvers=2.8, archname=sun4-solaris
    uname='sunos solaris 5.8 generic sun4u sparc sunw,ultra-5_10 '
    config_args='-Dcc=gcc -de'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef 
usemultiplicity=undef
    useperlio=undef d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=undef use64bitall=undef uselongdouble=undef
  Compiler:
    cc='gcc', ccflags ='-fno-strict-aliasing -I/usr/local/include 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
    optimize='-O',
    cppflags='-fno-strict-aliasing -I/usr/local/include'
    ccversion='', gccversion='2.95.3 20010315 (release)', 
gccosandvers='solaris2.8'
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=4321
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', 
lseeksize=8
    alignbytes=8, usemymalloc=y, prototype=define
  Linker and Libraries:
    ld='gcc', ldflags =' -L/usr/local/lib '
    libpth=/usr/local/lib /usr/lib /usr/ccs/lib
    libs=-lsocket -lnsl -lgdbm -ldb -ldl -lm -lc
    perllibs=-lsocket -lnsl -ldl -lm -lc
    libc=/lib/libc.so, so=so, useshrplib=false, libperl=libperl.a
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' '
    cccdlflags='-fPIC', lddlflags='-G -L/usr/local/lib'


Characteristics of this binary (from libperl): 
  Compile-time options: USE_LARGE_FILES
  Built under solaris
  Compiled at Apr 26 2001 04:07:49
  %ENV:
    PERL5LIB="/home/williami/perl/lib"
  @INC:
    /home/williami/perl/lib/sun4-solaris
    /home/williami/perl/lib
    /usr/local/lib/perl5/5.6.1/sun4-solaris
    /usr/local/lib/perl5/5.6.1
    /usr/local/lib/perl5/site_perl/5.6.1/sun4-solaris
    /usr/local/lib/perl5/site_perl/5.6.1
    /usr/local/lib/perl5/site_perl
    .
[EMAIL PROTECTED]:/home/williami/Template-Toolkit-2.14: 



_______________________________________________
templates mailing list
[email protected]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to