in reply to cannot find the Tie::StdScalar module

Tie::StdScalar is built into Tie::Scalar. If you have Tie::Scalar, you have Tie::StdScalar. Go ahead and install Tie::Scalar and that should clear things up.


Dave

  • Comment on Re: cannot find the Tie::StdScalar module

Replies are listed 'Best First'.
Re^2: cannot find the Tie::StdScalar module
by ysth (Canon) on Dec 29, 2006 at 00:22 UTC
    Tie::Scalar is included with perl since 5.002. But, unsurprisingly, you can't specify a package as a prereq if it isn't a file whose name is derivable from the package name. TheDamian should have caught this bug in his Makefile.PL.
      So, is this something that I should be worried about?

        No. It's a bug in his spec, not the module's function.

        ⠤⠤ ⠙⠊⠕⠞⠁⠇⠑⠧⠊

Re^2: cannot find the Tie::StdScalar module
by mifflin (Curate) on Dec 29, 2006 at 00:32 UTC
    Tie::Scalar is already on my system...
    # perl -w -MTie::Scalar -e 'print "$Tie::Scalar::VERSION\n"' 1.00