<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Perl compilation problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568233#M872689</link>
    <description>Hi Youlette,&lt;BR /&gt;&lt;BR /&gt;though Ramesh's recipe is generally correct something seems to have gone wrong with your installation, because to my knowledge the Cwd module is part of Perl's core distribution.&lt;BR /&gt;&lt;BR /&gt;What happens if you say (as non-root user) "perldoc Cwd"?&lt;BR /&gt;Do you get the POD.&lt;BR /&gt;If not you should look in Perl's installation path, usually something like&lt;BR /&gt;# find /opt/perl5/lib -name Cwd.pm&lt;BR /&gt;/opt/perl5/lib/5.6.1/Cwd.pm&lt;BR /&gt;&lt;BR /&gt;Check if your @INC array includes this search path,&lt;BR /&gt;&lt;BR /&gt;# perl -e 'print "@INC\n"'&lt;BR /&gt;/opt/perl5/lib/5.6.1/PA-RISC2.0 /opt/perl5/lib/5.6.1 /opt/perl5/lib/site_perl/5.&lt;BR /&gt;6.1/PA-RISC2.0 /opt/perl5/lib/site_perl/5.6.1 /opt/perl5/lib/site_perl .&lt;BR /&gt;&lt;BR /&gt;If however find couldn't spot it follow Ramesh's instruction, and install the missing module.&lt;BR /&gt;Chances are however that other core modules might be missing in your installation.</description>
    <pubDate>Thu, 23 Aug 2001 13:28:57 GMT</pubDate>
    <dc:creator>Ralph Grothe</dc:creator>
    <dc:date>2001-08-23T13:28:57Z</dc:date>
    <item>
      <title>Perl compilation problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568231#M872687</link>
      <description>Hello Everyone,&lt;BR /&gt;&lt;BR /&gt;I have just installed perl5.6.1 on an hpux 11.0 server.  I previously had perl 5.0 installed.  When I run one of my previos perl programs, which contains the "use Cwd" line, I get the following error:&lt;BR /&gt;&lt;BR /&gt;Can't locate Cwd.pm in @INC (@INC contains: /opt/perl5/lib/5.6.1/PA-RISC1.1 /opt/perl5/lib/5.6.1 /opt/perl5/lib/site_perl/5.6.1/PA-RISC1.1 /opt/perl5/lib/site_perl/5.6.1 /opt/perl5/lib/site_perl .) at ./system.perl line 7.&lt;BR /&gt;BEGIN failed--compilation aborted at ./system.perl line 7.&lt;BR /&gt;&lt;BR /&gt;Program worked fine with the previous version.&lt;BR /&gt;Any help in solving this problem is greatly appreciated.  &lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Youlette</description>
      <pubDate>Tue, 21 Aug 2001 21:13:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568231#M872687</guid>
      <dc:creator>Youlette Etienne_2</dc:creator>
      <dc:date>2001-08-21T21:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Perl compilation problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568232#M872688</link>
      <description>Hi Youlette,&lt;BR /&gt;&lt;BR /&gt;Looks like you need the Cwd.pm&lt;BR /&gt;You can download the module from &lt;A href="http://search.cpan.org/search?disk=Cwd" target="_blank"&gt;http://search.cpan.org/search?disk=Cwd&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.cpan.org/authords/id/L/LI/LIBERTY/Cwd-2.06.tar.gz" target="_blank"&gt;http://www.cpan.org/authords/id/L/LI/LIBERTY/Cwd-2.06.tar.gz&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Once you download the file gunzip and untar it. Then run&lt;BR /&gt;perl Makefile.PL&lt;BR /&gt;make&lt;BR /&gt;make test&lt;BR /&gt;make install&lt;BR /&gt;&lt;BR /&gt;This would install the module on your system.&lt;BR /&gt;&lt;BR /&gt;-HTH&lt;BR /&gt;Ramesh</description>
      <pubDate>Tue, 21 Aug 2001 21:48:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568232#M872688</guid>
      <dc:creator>linuxfan</dc:creator>
      <dc:date>2001-08-21T21:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Perl compilation problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568233#M872689</link>
      <description>Hi Youlette,&lt;BR /&gt;&lt;BR /&gt;though Ramesh's recipe is generally correct something seems to have gone wrong with your installation, because to my knowledge the Cwd module is part of Perl's core distribution.&lt;BR /&gt;&lt;BR /&gt;What happens if you say (as non-root user) "perldoc Cwd"?&lt;BR /&gt;Do you get the POD.&lt;BR /&gt;If not you should look in Perl's installation path, usually something like&lt;BR /&gt;# find /opt/perl5/lib -name Cwd.pm&lt;BR /&gt;/opt/perl5/lib/5.6.1/Cwd.pm&lt;BR /&gt;&lt;BR /&gt;Check if your @INC array includes this search path,&lt;BR /&gt;&lt;BR /&gt;# perl -e 'print "@INC\n"'&lt;BR /&gt;/opt/perl5/lib/5.6.1/PA-RISC2.0 /opt/perl5/lib/5.6.1 /opt/perl5/lib/site_perl/5.&lt;BR /&gt;6.1/PA-RISC2.0 /opt/perl5/lib/site_perl/5.6.1 /opt/perl5/lib/site_perl .&lt;BR /&gt;&lt;BR /&gt;If however find couldn't spot it follow Ramesh's instruction, and install the missing module.&lt;BR /&gt;Chances are however that other core modules might be missing in your installation.</description>
      <pubDate>Thu, 23 Aug 2001 13:28:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-compilation-problem/m-p/2568233#M872689</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2001-08-23T13:28:57Z</dc:date>
    </item>
  </channel>
</rss>

