<?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 DBI and DBD revisted again ( sorry ) in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073716#M92158</link>
    <description>Correct. The compile time options of perl are re-used for the modules. These are stored in the %Config hash. See 'use Config;' (perldoc Config).&lt;BR /&gt;&lt;BR /&gt;Most (if not all) settings can be seen with the -V (capital V) command line option&lt;BR /&gt;&lt;BR /&gt;&amp;gt; perl -V:ccflags&lt;BR /&gt;ccflags=' -Ae -DDEBUGGING +Z -z -D_HPUX_SOURCE -Wl,+vnocompatwarnings +DD64 -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 ';&lt;BR /&gt;&lt;BR /&gt;The easiest way to see what C-coplier was used is also with the -V:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; perl -V:.*ccversion&lt;BR /&gt;ccversion='B3910B A.06.05';&lt;BR /&gt;gccversion='';&lt;BR /&gt;&lt;BR /&gt;As a side note, pure-perl models (the ones that not use XS or a C-Compiler can safely be used/built on systems with a different compiler or no compiler at all.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
    <pubDate>Fri, 12 Oct 2007 01:27:42 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2007-10-12T01:27:42Z</dc:date>
    <item>
      <title>PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073709#M92151</link>
      <description>Sorry to post a question on this again as there are lots and lots of them.&lt;BR /&gt;&lt;BR /&gt;I have a specific issue that I need some help with.&lt;BR /&gt;&lt;BR /&gt;Trying to install the DBI and DBD latest versions.  I am using recent GCC and PERL.  Just downloaded all of this today. ( I can post specific info if it is really relevant ).&lt;BR /&gt;&lt;BR /&gt;It looks to me like even though I supply the gcc path to the perl Makefile.PL it still throws in a number of ANSI\C switches during the make.  Below is the errors from the make.  Can I get some tips to correct/remove the ANSI/C switches from the Makefile ?  Is it as simple as editing the Makefile and remove any references that I can find to the below errors ?&lt;BR /&gt;&lt;BR /&gt;Forgive me in advance for my stupidity as I have little experience in C.&lt;BR /&gt;&lt;BR /&gt;        /opt/hp-gcc64/bin/gcc -c    -D_POSIX_C_SOURCE=199506L -D_REENTRANT -Ae -D_HPUX_SOURCE -Wl,+vnocompatwarnings +DD64 +Z -DUSE_SITECUSTOMIZE -DNO_HASH_SEED -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 +O2 +Onolimit +Opromote_indirect_calls    -DVERSION=\"1.59\"  -DXS_VERSION=\"1.59\" +Z "-I/opt/perl_64/lib/5.8.8/PA-RISC2.0-thread-multi-LP64/CORE"   Perl.c&lt;BR /&gt;gcc: +DD64: No such file or directory&lt;BR /&gt;gcc: +Z: No such file or directory&lt;BR /&gt;gcc: +O2: No such file or directory&lt;BR /&gt;gcc: +Onolimit: No such file or directory&lt;BR /&gt;gcc: +Opromote_indirect_calls: No such file or directory&lt;BR /&gt;gcc: +Z: No such file or directory&lt;BR /&gt;&lt;COMMAND-LINE&gt;: error: missing '(' after predicate&lt;BR /&gt;*** Error exit code 1&lt;BR /&gt;&lt;/COMMAND-LINE&gt;</description>
      <pubDate>Thu, 11 Oct 2007 11:16:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073709#M92151</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-10-11T11:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073710#M92152</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;It appears that your Perl was compiled with the HP-UX C compiler.  To (easily) compile modules with the 'gcc' compiler you need to download a version of Perl compiled with 'gcc'.  You can verify the compiler used thusly:&lt;BR /&gt;&lt;BR /&gt;# perl -V:cc&lt;BR /&gt;&lt;BR /&gt;(and for details):&lt;BR /&gt;&lt;BR /&gt;# perl -V::ccflags&lt;BR /&gt;&lt;BR /&gt;You can fetch a 'gcc' built Perl from Merijn's web site:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mirrors.develooper.com/hpux/downloads.html" target="_blank"&gt;http://mirrors.develooper.com/hpux/downloads.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 11 Oct 2007 11:33:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073710#M92152</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-10-11T11:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073711#M92153</link>
      <description>Crud....&lt;BR /&gt;&lt;BR /&gt;I hate it when I miss-click or miss the simple stuff.&lt;BR /&gt;&lt;BR /&gt;argggg...&lt;BR /&gt;&lt;BR /&gt;Thanks !! again, and again, and again,&lt;BR /&gt;&lt;BR /&gt;Tim&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Oct 2007 11:40:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073711#M92153</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-10-11T11:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073712#M92154</link>
      <description>As a seperate advice (this one really was a give-away :) please tell us *what* DBD, as there is no such thing as the latest DBD or the most recent.&lt;BR /&gt;&lt;BR /&gt;Or can we assume it is DBD-Pg, or DBD-SQLite, or (the horror, I feel with you for having to deal with one of the worst DB's, at least when seen from a developers point of view) DBD-Oracle?&lt;BR /&gt;&lt;BR /&gt;Extra info for all: GNU gcc-4.2.2 has been released this week, and I cannot get it to build on HP-UX 11.23 IPF, so at least they missed here on `improving' the product.&lt;BR /&gt;Stay tuned, I won't give up (yet)&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 11 Oct 2007 13:20:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073712#M92154</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2007-10-11T13:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073713#M92155</link>
      <description>Sorry about that Merjin,&lt;BR /&gt;&lt;BR /&gt;DBD::Oracle 1.19 from CPAN&lt;BR /&gt;&lt;BR /&gt;I seem to have come full circle as I found one of my posts from a few years ago getting caught in the circle of perl compiled with ANSI/C or perl compiled with gcc. &lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=990842" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=990842&lt;/A&gt;&lt;BR /&gt;Some modules requiring ansic and others requiring gcc.  Once upon a time the dspp had two versions of perl available, one built with gcc the other ansic, but no more.  All precompiled HP dists are with the $$ ansic.&lt;BR /&gt;&lt;BR /&gt;I am working on installing the perl distribution 5.8.8 compiled with gcc from your site and am having erros during the make. &lt;BR /&gt;   Bad character &amp;gt; (octal 76), line 72Make: .  Stop.&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Oct 2007 13:44:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073713#M92155</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-10-11T13:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073714#M92156</link>
      <description>Do yoyu use GNU make (or sometimes called gmake)? If not, please do, and make sure it is found in your $PATH before anything else.&lt;BR /&gt;&lt;BR /&gt;HP has given us great utilities, but make is not one of them.&lt;BR /&gt;&lt;BR /&gt;If you cannot find it, I can make the most recent versions available.&lt;BR /&gt;Maybe I should do so anyway.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 11 Oct 2007 14:10:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073714#M92156</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2007-10-11T14:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073715#M92157</link>
      <description>Did not use gmake.  I will try that also.&lt;BR /&gt;&lt;BR /&gt;I do own a copy of ANSI\C.  I am going to attempt the module build after I install this.  I do not own the ANSI\C for all of my servers just 1 and hence was attempting to go down the GNU path.&lt;BR /&gt;&lt;BR /&gt;I seem to remember from before that the makes for the perl modules would use the complile options that perl was installed with.  Hence the new need for Perl w/ gcc vs Perl w/ Ansi\C.&lt;BR /&gt;&lt;BR /&gt;Thanks again for the patient support</description>
      <pubDate>Thu, 11 Oct 2007 15:10:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073715#M92157</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-10-11T15:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073716#M92158</link>
      <description>Correct. The compile time options of perl are re-used for the modules. These are stored in the %Config hash. See 'use Config;' (perldoc Config).&lt;BR /&gt;&lt;BR /&gt;Most (if not all) settings can be seen with the -V (capital V) command line option&lt;BR /&gt;&lt;BR /&gt;&amp;gt; perl -V:ccflags&lt;BR /&gt;ccflags=' -Ae -DDEBUGGING +Z -z -D_HPUX_SOURCE -Wl,+vnocompatwarnings +DD64 -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 ';&lt;BR /&gt;&lt;BR /&gt;The easiest way to see what C-coplier was used is also with the -V:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; perl -V:.*ccversion&lt;BR /&gt;ccversion='B3910B A.06.05';&lt;BR /&gt;gccversion='';&lt;BR /&gt;&lt;BR /&gt;As a side note, pure-perl models (the ones that not use XS or a C-Compiler can safely be used/built on systems with a different compiler or no compiler at all.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Fri, 12 Oct 2007 01:27:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073716#M92158</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2007-10-12T01:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: PERL DBI and DBD revisted again ( sorry )</title>
      <link>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073717#M92159</link>
      <description>Thanks again all !!&lt;BR /&gt;&lt;BR /&gt;I took the easy way out and compiled with my one and only installtion of ANCI/C.  Luckily the modules are currently only requested on one system.  Will find another way someday if/when more are requested.&lt;BR /&gt;&lt;BR /&gt;The DBI and DBD modules compiled and installed without a single error.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Oct 2007 14:11:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/perl-dbi-and-dbd-revisted-again-sorry/m-p/5073717#M92159</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2007-10-17T14:11:21Z</dc:date>
    </item>
  </channel>
</rss>

