<?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: Add PHP extensions (Mysqli, Mcrypt and MM) to HP-UX Apache-based Web Server v.3.01 on IA64 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430661#M664037</link>
    <description>&amp;gt;Shinji: % make 2&amp;gt;&amp;amp;1 | tee make.log&lt;BR /&gt;&lt;BR /&gt;FYI.  I typically would never use tee for this purpose.  I use tail -f:&lt;BR /&gt;make &amp;gt; make.log 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Then I can stop and start a tail -f and do something else.</description>
    <pubDate>Thu, 04 Jun 2009 03:36:03 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2009-06-04T03:36:03Z</dc:date>
    <item>
      <title>Add PHP extensions (Mysqli, Mcrypt and MM) to HP-UX Apache-based Web Server v.3.01 on IA64</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430658#M664034</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I already install HP-UX Apache-based Web Server v.3.01 on RX6600 successfully.&lt;BR /&gt;&lt;BR /&gt;But I need to add some PHP extensions to my installation. I can not find information about these PHP extensions on IA64.&lt;BR /&gt;&lt;BR /&gt;Can you kindly to help to find the best way to do this?&lt;BR /&gt;&lt;BR /&gt;* I have already installed &lt;BR /&gt;HP C++, and HP gcc&lt;BR /&gt;* I have already downloaded&lt;BR /&gt;mcrypt-2.6.8.tar&lt;BR /&gt;mm-1.3.1 .tar&lt;BR /&gt;&lt;BR /&gt;I really appreciate your help.&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Mon, 01 Jun 2009 20:35:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430658#M664034</guid>
      <dc:creator>Omar De la Torre C.</dc:creator>
      <dc:date>2009-06-01T20:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Add PHP extensions (Mysqli, Mcrypt and MM) to HP-UX Apache-based Web Server v.3.01 on IA64</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430659#M664035</link>
      <description>those 'extensions' come in source and they include specific build instructions. best would be to read those, they should generally work on all supported platforms. it's probably going to be a PITA to get going though...</description>
      <pubDate>Tue, 02 Jun 2009 05:58:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430659#M664035</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2009-06-02T05:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Add PHP extensions (Mysqli, Mcrypt and MM) to HP-UX Apache-based Web Server v.3.01 on IA64</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430660#M664036</link>
      <description>&lt;!--!*#--&gt;I have not built mysqli.so and mcrypt.so as PHP extentions so far.&lt;BR /&gt;&lt;BR /&gt;It looks like you need to build libmcrypt and mhash at least as&lt;BR /&gt;64-bit (NOTE: I suppose your HP-UX Apached-based Web Server is&lt;BR /&gt;64-bit). Also you may need m4, autoconf and much more which&lt;BR /&gt;depends on your development environment. It would be better to&lt;BR /&gt;recreate the configure script in libmcrypt-2.5.8/libltdl using&lt;BR /&gt;the latest autoconf and m4. because you will encounter an error&lt;BR /&gt;caused by the out-of-date configure in libmcrypt-2.5.8/libltdl&lt;BR /&gt;when launching libmcrypt-2.5.8/configure.&lt;BR /&gt;&lt;BR /&gt;* libmcrypt-2.5.8&lt;BR /&gt;&lt;BR /&gt;  % cd libltdl&lt;BR /&gt;  % cp -p configure configure.orig&lt;BR /&gt;  % autoconf&lt;BR /&gt;  % cd ..&lt;BR /&gt;  % env CC=cc CFLAGS="+O2 +DD64 -I/usr/local/include" \&lt;BR /&gt;      LDFLAGS="-L/usr/local/lib/hpux64" ./configure \&lt;BR /&gt;      --libdir=/usr/local/lib/hpux64 --enable-dynamic-loading \&lt;BR /&gt;      --enable-ltdl-install 2&amp;gt;&amp;amp;1 | tee configure.log&lt;BR /&gt;  % vi config.h&lt;BR /&gt;  #define realloc rpl_realloc&lt;BR /&gt;  --&lt;BR /&gt;  //#define realloc rpl_realloc&lt;BR /&gt;  % make 2&amp;gt;&amp;amp;1 | tee make.log&lt;BR /&gt;  # su&lt;BR /&gt;  # make install 2&amp;gt;&amp;amp;1 | tee makeinstall.log&lt;BR /&gt;&lt;BR /&gt;* mhash-0.9.9.9&lt;BR /&gt;&lt;BR /&gt;  % env CC=cc CFLAGS="+O2 +DD64 -I/usr/local/include" \&lt;BR /&gt;    LDFLAGS="-L/usr/local/lib/hpux64" ./configure \&lt;BR /&gt;    --libdir=/usr/local/lib/hpux64 2&amp;gt;&amp;amp;1 | tee configure.log&lt;BR /&gt;&lt;BR /&gt;  If you use gcc, skip the changes for src/Makefile:&lt;BR /&gt;&lt;BR /&gt;  % vi src/Makefile&lt;BR /&gt;  &amp;lt; CFLAGS=...  -Wall&lt;BR /&gt;  --&lt;BR /&gt;  &amp;gt; CFLAGS=...  &lt;BR /&gt;&lt;BR /&gt;  % vi src/rfc2440.c&lt;BR /&gt;  &amp;lt; a-&amp;gt;d = (void*)a + sizeof *a;&lt;BR /&gt;  --&lt;BR /&gt;  &amp;lt; a-&amp;gt;d = (USTRING*)a + sizeof *a;&lt;BR /&gt;&lt;BR /&gt;  Same changes are required for line 77 and 95.&lt;BR /&gt;&lt;BR /&gt;  % make 2&amp;gt;&amp;amp;1 | tee make.log&lt;BR /&gt;  % su&lt;BR /&gt;  # make install 2&amp;gt;&amp;amp;1 | tee makeinstall.log&lt;BR /&gt;&lt;BR /&gt;I'm terribly sorry I have not verified if the above steps are&lt;BR /&gt;sufficient to build mcrypt.so as PHP extention. If some changes&lt;BR /&gt;are required in the steps I mentioned above, please correct them&lt;BR /&gt;and share them here in this forum.&lt;BR /&gt;&lt;BR /&gt;Anyway, I think you need much more tasks to proceed to your&lt;BR /&gt;goal. The rest is up to you !!</description>
      <pubDate>Wed, 03 Jun 2009 23:18:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430660#M664036</guid>
      <dc:creator>Shinji Teragaito_1</dc:creator>
      <dc:date>2009-06-03T23:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Add PHP extensions (Mysqli, Mcrypt and MM) to HP-UX Apache-based Web Server v.3.01 on IA64</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430661#M664037</link>
      <description>&amp;gt;Shinji: % make 2&amp;gt;&amp;amp;1 | tee make.log&lt;BR /&gt;&lt;BR /&gt;FYI.  I typically would never use tee for this purpose.  I use tail -f:&lt;BR /&gt;make &amp;gt; make.log 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Then I can stop and start a tail -f and do something else.</description>
      <pubDate>Thu, 04 Jun 2009 03:36:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-php-extensions-mysqli-mcrypt-and-mm-to-hp-ux-apache-based/m-p/4430661#M664037</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-06-04T03:36:03Z</dc:date>
    </item>
  </channel>
</rss>

