<?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: Can't locate ExtUtils/MakeMaker.pm in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444323#M207754</link>
    <description>Forgot,&lt;BR /&gt;if really necessary you could unshift your own search path in the @INC array by using the "use lib" pragma, or on the command line like&lt;BR /&gt; &lt;BR /&gt;# perl -Mlib=/home/me/my/modules -le 'print join "\n",@INC'&lt;BR /&gt;/home/me/my/modules&lt;BR /&gt;/opt/perl5/lib/5.8.0/PA-RISC2.0-LP64&lt;BR /&gt;/opt/perl5/lib/5.8.0&lt;BR /&gt;/opt/perl5/lib/site_perl/5.8.0/PA-RISC2.0-LP64&lt;BR /&gt;/opt/perl5/lib/site_perl/5.8.0&lt;BR /&gt;/opt/perl5/lib/site_perl&lt;BR /&gt;.&lt;BR /&gt; &lt;BR /&gt;However, MakeMaker is part of the basic Perl distro and should already be included in the search path.&lt;BR /&gt; &lt;BR /&gt;Please check also&lt;BR /&gt; &lt;BR /&gt;# perl -MExtUtils::MakeMaker -le 'print $ExtUtils::MakeMaker::VERSION'&lt;BR /&gt;6.03&lt;BR /&gt;</description>
    <pubDate>Wed, 15 Dec 2004 10:56:29 GMT</pubDate>
    <dc:creator>Ralph Grothe</dc:creator>
    <dc:date>2004-12-15T10:56:29Z</dc:date>
    <item>
      <title>perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444320#M207751</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I want to install the module DBI-1.46 in perl.&lt;BR /&gt;I have download the file, but when I do &lt;BR /&gt;&lt;BR /&gt;#  perl Makefile.PL&lt;BR /&gt;Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: lib /project/iASv2/sr&lt;BR /&gt;c/pdc_perl/bin/HPUX/Opt/lib/5.6.1/PA-RISC2.0 /project/iASv2/src/pdc_perl/bin/HPU&lt;BR /&gt;X/Opt/lib/5.6.1 /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl/5.6.1/PA-&lt;BR /&gt;RISC2.0 /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl/5.6.1 /project/iA&lt;BR /&gt;Sv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl .) at Makefile.PL line 31.&lt;BR /&gt;BEGIN failed--compilation aborted at Makefile.PL line 31.&lt;BR /&gt;&lt;BR /&gt;its shows this error.&lt;BR /&gt;I have prove to put this files in the same directory that is this module, but there are a lot of files. Does anyone knows how I could modify @INC to put there all the paths with librarys??&lt;BR /&gt;&lt;BR /&gt;Thanks a lot of,&lt;BR /&gt;Carmen.</description>
      <pubDate>Wed, 15 Dec 2004 10:36:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444320#M207751</guid>
      <dc:creator>Carme Torca</dc:creator>
      <dc:date>2004-12-15T10:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444321#M207752</link>
      <description>IMHO ExtUtils::MakeMaker is part of perl distribution. It sound strange you don't have it, but as long as it doesn't seem to be installed in a conventionnal PATH, you maybe not used depot file. It is normally located in lib/5.6.1 subdirectory of your perl installation dir. If it not there, you can download module from &lt;A href="http://cpan.org/" target="_blank"&gt;http://cpan.org/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 10:47:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444321#M207752</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-15T10:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444322#M207753</link>
      <description>Check your Include Array.&lt;BR /&gt;It should look similar (version, architecture dependant) to this&lt;BR /&gt; &lt;BR /&gt;# perl -le 'print join "\n",@INC'&lt;BR /&gt;/opt/perl5/lib/5.8.0/PA-RISC2.0-LP64&lt;BR /&gt;/opt/perl5/lib/5.8.0&lt;BR /&gt;/opt/perl5/lib/site_perl/5.8.0/PA-RISC2.0-LP64&lt;BR /&gt;/opt/perl5/lib/site_perl/5.8.0&lt;BR /&gt;/opt/perl5/lib/site_perl&lt;BR /&gt;.&lt;BR /&gt; &lt;BR /&gt;The ExtUtils::MakeMaker module should be in the search path&lt;BR /&gt; &lt;BR /&gt;e.g. &lt;BR /&gt; &lt;BR /&gt;# ll /opt/perl5/lib/5.8.0/ExtUtils/MakeMaker.pm&lt;BR /&gt;-r--r--r--   1 root       sys          73040 Jul  4  2003 /opt/perl5/lib/5.8.0/ExtUtils/MakeMaker.pm&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 10:48:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444322#M207753</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-15T10:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444323#M207754</link>
      <description>Forgot,&lt;BR /&gt;if really necessary you could unshift your own search path in the @INC array by using the "use lib" pragma, or on the command line like&lt;BR /&gt; &lt;BR /&gt;# perl -Mlib=/home/me/my/modules -le 'print join "\n",@INC'&lt;BR /&gt;/home/me/my/modules&lt;BR /&gt;/opt/perl5/lib/5.8.0/PA-RISC2.0-LP64&lt;BR /&gt;/opt/perl5/lib/5.8.0&lt;BR /&gt;/opt/perl5/lib/site_perl/5.8.0/PA-RISC2.0-LP64&lt;BR /&gt;/opt/perl5/lib/site_perl/5.8.0&lt;BR /&gt;/opt/perl5/lib/site_perl&lt;BR /&gt;.&lt;BR /&gt; &lt;BR /&gt;However, MakeMaker is part of the basic Perl distro and should already be included in the search path.&lt;BR /&gt; &lt;BR /&gt;Please check also&lt;BR /&gt; &lt;BR /&gt;# perl -MExtUtils::MakeMaker -le 'print $ExtUtils::MakeMaker::VERSION'&lt;BR /&gt;6.03&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 10:56:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444323#M207754</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-15T10:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444324#M207755</link>
      <description>If you are planning to make DBI in order to install DBD::Oracle, stop now, before you get frustrated, because the perl you are using does is not built to support DBD::Oracle. I'm sure. It's a 5.6.1 build that - unless you were an expert when you built it yourself - does not have the needed libs in the right place. And /if/ you were an expert, you would have solved this question yourself anyway.&lt;BR /&gt;&lt;BR /&gt;So, assuming I'm correct, you either fetch a more recent perl binary prebuild from one of the available sources (HP Porting center on &lt;A href="http://hpux.connect.org.uk/" target="_blank"&gt;http://hpux.connect.org.uk/&lt;/A&gt; or my site at &lt;A href="http://mirrors.develooper.com/hpux/" target="_blank"&gt;http://mirrors.develooper.com/hpux/&lt;/A&gt; ), or rebuild perl from source yourself, which is a good option if you are using HP C-ANSI-C, because all binary distro's for HP-UX are - as far as I know - built with GNU gcc, and your problem post does not state what compiler you use.&lt;BR /&gt;&lt;BR /&gt;My build includes the most recent DBI at the moment of build.&lt;BR /&gt;&lt;BR /&gt;And to answer your question, you can set the perl lib path in $PERL5LIB&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Wed, 15 Dec 2004 11:02:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444324#M207755</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-15T11:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444325#M207756</link>
      <description>Sorry, I wasn't paying enough attention to your output.&lt;BR /&gt;Your @INC looks strange, at least non-standard to me.&lt;BR /&gt;Have you installed your Perl under /project/iASv2, or has someone modified it (e.g. in a profile script or other)?&lt;BR /&gt;If you are using the precompiled HP-UX Perl build it should have been installed beneath /opt.&lt;BR /&gt;Please post the output of "perl -V",&lt;BR /&gt;to see if you're running a custom built Perl.</description>
      <pubDate>Wed, 15 Dec 2004 11:03:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444325#M207756</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-15T11:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444326#M207757</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have do this:&lt;BR /&gt;&lt;BR /&gt;# perl -le 'print join "\n", @INC'&lt;BR /&gt;/project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/5.6.1/PA-RISC2.0&lt;BR /&gt;/project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/5.6.1&lt;BR /&gt;/project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl/5.6.1/PA-RISC2.0&lt;BR /&gt;/project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl/5.6.1&lt;BR /&gt;/project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl&lt;BR /&gt;&lt;BR /&gt;but I don't have this directory.&lt;BR /&gt;&lt;BR /&gt;#find / -name MakeMaker.pm&lt;BR /&gt;/opt/perl/lib/5.6.1/ExtUtils/MakeMaker.pm&lt;BR /&gt;/opt/OV/contrib/perl/lib/5.6.1/ExtUtils/MakeMaker.pm&lt;BR /&gt;/Serveis/oas10g/perl/lib/5.6.1/ExtUtils/MakeMaker.pm&lt;BR /&gt;&lt;BR /&gt;I would like to install this module in /Serveis/oas10g/perl/lib/5.6.1, so:&lt;BR /&gt;&lt;BR /&gt;#pwd&lt;BR /&gt;/Serveis/oas10g/perl/lib/5.6.1&lt;BR /&gt;&lt;BR /&gt;#perl -Mlib=/Serveis/oas10g/perl/lib/5.6.1 -le 'print join "\n",@INC'&lt;BR /&gt;Can't locate Config.pm in @INC (@INC contains: /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/5.6.1/PA-RISC2.0 /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/5.6.1 /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl/5.6.1/PA-RISC2.0 /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl/5.6.1 /project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib/site_perl .) at lib.pm line 4.&lt;BR /&gt;BEGIN failed--compilation aborted at lib.pm line 4.&lt;BR /&gt;Compilation failed in require.&lt;BR /&gt;BEGIN failed--compilation aborted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;but its returns this error. Any idea??&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Carmen.&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 11:26:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444326#M207757</guid>
      <dc:creator>Carme Torca</dc:creator>
      <dc:date>2004-12-15T11:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444327#M207758</link>
      <description>Where do you get this perl from ? Have you compiled from source ?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 11:30:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444327#M207758</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-15T11:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444328#M207759</link>
      <description>I have download the file DBI-1.46.tar, and I have only gunzip and tar xvf in /tmp/perl, and I an doing there:&lt;BR /&gt;&lt;BR /&gt;# perl Makefile.PL&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe this is not correct??&lt;BR /&gt;&lt;BR /&gt;Thanks!,&lt;BR /&gt;Carmen.</description>
      <pubDate>Wed, 15 Dec 2004 11:30:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444328#M207759</guid>
      <dc:creator>Carme Torca</dc:creator>
      <dc:date>2004-12-15T11:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444329#M207760</link>
      <description>I have download it from: &lt;A href="http://search.cpan.org/~timb/DBI-1.46/" target="_blank"&gt;http://search.cpan.org/~timb/DBI-1.46/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 11:32:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444329#M207760</guid>
      <dc:creator>Carme Torca</dc:creator>
      <dc:date>2004-12-15T11:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444330#M207761</link>
      <description>I'm not talking about DBI, but really perl itself.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Dec 2004 11:35:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444330#M207761</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-15T11:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444331#M207762</link>
      <description>From your find I gather that you have three different Perl interpreters and your environment got a bit mingled.&lt;BR /&gt; &lt;BR /&gt;Besides, don't use the -M option to load another path that I told you before.&lt;BR /&gt;As procura suggested the usual way would be to set the PERL5LIB variable (if you really need to).&lt;BR /&gt;I simply forgot about that one.&lt;BR /&gt; &lt;BR /&gt;First find out which of the three interpreters gets invoked.&lt;BR /&gt; &lt;BR /&gt;e.g.&lt;BR /&gt;which perl&lt;BR /&gt;or&lt;BR /&gt;type perl&lt;BR /&gt; &lt;BR /&gt;As said before, to see how this Perl was built (i.e. which compiler etc) post the output from &lt;BR /&gt;"perl -V"&lt;BR /&gt;Alternatively you could post us the dump from&lt;BR /&gt; &lt;BR /&gt;perl -MConfig -e 'map{printf "%s =&amp;gt; %s\n",$Config{$_},$_} sort keys %Config'&lt;BR /&gt; &lt;BR /&gt;(no, just kidding, this would be overkill)</description>
      <pubDate>Wed, 15 Dec 2004 11:53:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444331#M207762</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-15T11:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444332#M207763</link>
      <description>Presumably it's just a symlink pointing to the wrong directory.&lt;BR /&gt;If so, where is it pointing to? &lt;BR /&gt; &lt;BR /&gt;# ll $(which perl)&lt;BR /&gt;lrwxr-xr-x   1 root       sys             19 Jul  6  2003 /usr/bin/perl -&amp;gt; /opt/perl5/bin/perl&lt;BR /&gt; &lt;BR /&gt;If your Perl isn't a very special custom built Perl that contains special modules,&lt;BR /&gt;go and download the build from procura, or if you're adventuous get the sources and build your own.&lt;BR /&gt; &lt;BR /&gt;(Outch, by accident I swapped key and value, and the formatting yields clutter,&lt;BR /&gt;maybe this works better?&lt;BR /&gt; &lt;BR /&gt;perl -MConfig -e 'map{printf "%-20s =&amp;gt; %s\n",$_,$Config{$_}} sort keys %Config'</description>
      <pubDate>Wed, 15 Dec 2004 12:03:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444332#M207763</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-12-15T12:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: perl: Can't locate ExtUtils/MakeMaker.pm</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444333#M207764</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Finally I have do one link between&lt;BR /&gt;/project/iASv2/src/pdc_perl/bin/HPUX/Opt/lib&lt;BR /&gt;and /Serveis/oas10g/perl/lib/5.6.1 &lt;BR /&gt;&lt;BR /&gt;and then it has works ok.&lt;BR /&gt;&lt;BR /&gt;Thanks everyone.&lt;BR /&gt;Carmen.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Dec 2004 08:53:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-can-t-locate-extutils-makemaker-pm/m-p/3444333#M207764</guid>
      <dc:creator>Carme Torca</dc:creator>
      <dc:date>2004-12-16T08:53:17Z</dc:date>
    </item>
  </channel>
</rss>

