<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>DIYMacServer &#187; Tag: PHP - Recent Topics</title>
<link>http://diymacserver.com/forum/</link>
<description>DIYMacServer &#187; Tag: PHP - Recent Topics</description>
<language>en</language>
<pubDate>Wed, 08 Feb 2012 06:23:19 +0000</pubDate>

<item>
<title>zelda on "PHP with iconv?"</title>
<link>http://diymacserver.com/forum/topic/php-with-iconv#post-2512</link>
<pubDate>Thu, 08 Dec 2011 18:36:25 +0000</pubDate>
<dc:creator>zelda</dc:creator>
<guid isPermaLink="false">2512@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I used your great documentation to get a localhost server running on my iMac but i've run into a problem: i configured PHP pretty much the way you wrote in the documentation and recently noticed you had it compile without iconv and now i'm trying to use a piece of the Zend framework (Lucene search) that calls iconv functions and of course it fails with &#34;Fatal error: Call to undefined function iconv()&#34;&#60;/p&#62;
&#60;p&#62;Was there a reason you compiled PHP without iconv: like it does not work on osx, or something else?&#60;/p&#62;
&#60;p&#62;Any guidance on how to re-compile PHP with iconv: is it as simple as changing the line from without iconv to with iconv?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>lholcombe on "PHP pages not being served by brand new 5.3.3 source build"</title>
<link>http://diymacserver.com/forum/topic/php-pages-not-being-served-by-brand-new-533-source-build#post-846</link>
<pubDate>Sun, 01 Aug 2010 08:18:17 +0000</pubDate>
<dc:creator>lholcombe</dc:creator>
<guid isPermaLink="false">846@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Thanks to a news item and a patch from this website, I was able to build and install PHP 5.3.3 from source with no troubles.  Unfortunately, it does not seem to be working.  HTML pages from both localhost and my virtual host load fine, but PHP pages do not, including a phpinfo() page.  All I see in both Safari and Firefox is a blank page.  I've checked my error logs, but they are empty.  Everything in the various httpd conf files looks good - again, the virtual host is working just fine.  Previously, when there has been a problem with the PHP module, I got a detailed linker error message when I ran apachectl configtest.  But with this latest build, there are no errors.&#60;/p&#62;
&#60;p&#62;I think I've covered all the basics, but I'm willing to explore any suggestions or solutions.  Thanks in advance for your time.  My primary goal in recompiling PHP is to get PostgreSQL support.&#60;/p&#62;
&#60;p&#62;FYI, I'm running Snow Leopard on a 32-bit processor, if that changes anything.
&#60;/p&#62;</description>
</item>
<item>
<title>zerustech on "Compile Apache+MySQL+php on Snow Leopard"</title>
<link>http://diymacserver.com/forum/topic/compile-apachemysqlphp-on-snow-leopard#post-716</link>
<pubDate>Sun, 27 Sep 2009 06:40:01 +0000</pubDate>
<dc:creator>zerustech</dc:creator>
<guid isPermaLink="false">716@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;I was trying to compile Apache+MySQL+PHP on Snow Leopard according to the instructions on this website, but unfortunately none of them worked. &#60;/p&#62;
&#60;p&#62;I tried different solutions and finally succeeded. So I'm just posting the instructions here and hopefully it will be helpful to you.&#60;/p&#62;
&#60;p&#62;1. First of all, you should download apache 2.2.13 (the apxs in its previous releases does not work)&#60;/p&#62;
&#60;p&#62;2. Install xcode from Snow Leopard installation DVD (I guess you have already installed)&#60;/p&#62;
&#60;p&#62;3. Install MacPorts and the following port libs:&#60;br /&#62;
- zlib&#60;br /&#62;
- curl&#60;br /&#62;
- xsl&#60;br /&#62;
- gd&#60;br /&#62;
- openjpeg&#60;br /&#62;
- libpng&#60;br /&#62;
- freetype&#60;br /&#62;
- xpm&#60;br /&#62;
- exif&#60;br /&#62;
- libiconv&#60;/p&#62;
&#60;p&#62;4. Compile MySQL (5.1.39) as follows:&#60;/p&#62;
&#60;p&#62;#!/bin/sh&#60;br /&#62;
MYSQLVERSION=&#34;5.1.39&#34;&#60;br /&#62;
MYSQLDIR=&#34;/opt/mysql/$MYSQLVERSION&#34;&#60;br /&#62;
make distclean&#60;br /&#62;
./configure \&#60;br /&#62;
--prefix=$MYSQLDIR \&#60;br /&#62;
--with-server-suffix=--standard \&#60;br /&#62;
--enable-thread-safe-client \&#60;br /&#62;
--enable-local-infile \&#60;br /&#62;
--enable-shared \&#60;br /&#62;
--with-zlib-dir=bundled \&#60;br /&#62;
--with-big-tables \&#60;br /&#62;
--with-readline \&#60;br /&#62;
--with-plugins=all \&#60;br /&#62;
--with-mysqld-user=mysql \&#60;br /&#62;
--with-extra-charsets=all \&#60;br /&#62;
--with-unix-socket-path=$MYSQLDIR/var/mysql.sock \&#60;br /&#62;
--without-docs&#60;br /&#62;
make&#60;br /&#62;
make install&#60;/p&#62;
&#60;p&#62;5. Compile Apache (2.2.13) as follows:&#60;br /&#62;
#!/bin/sh&#60;br /&#62;
APACHEVERSION=&#34;2.2.13&#34;&#60;br /&#62;
APACHEDIR=&#34;/opt/apache/$APACHEVERSION&#34;&#60;br /&#62;
make distclean&#60;br /&#62;
./configure -prefix=$APACHEDIR \&#60;br /&#62;
 -enable-mods-shared=all \&#60;br /&#62;
 -with-ssl \&#60;br /&#62;
 -with-mpm=prefork \&#60;br /&#62;
 -disable-unique-id \&#60;br /&#62;
 -enable-ssl \&#60;br /&#62;
 -enable-dav \&#60;br /&#62;
 -enable-cache \&#60;br /&#62;
 -enable-proxy \&#60;br /&#62;
 -enable-logio \&#60;br /&#62;
 -enable-deflate \&#60;br /&#62;
 -with-included-apr \&#60;br /&#62;
 -enable-cgi \&#60;br /&#62;
 -enable-cgid \&#60;br /&#62;
 -enable-suexec&#60;/p&#62;
&#60;p&#62;6. Compile PHP (4.4.9 or 5.3.0) as follows:&#60;br /&#62;
#!/bin/sh&#60;br /&#62;
PHPVERSION=4.4.9&#60;br /&#62;
MYSQLVERSION=5.1.39&#60;br /&#62;
APACHEVERSION=2.2.13&#60;br /&#62;
BUILDTAG=$PHPVERSION.mysql.$MYSQLVERSION&#60;br /&#62;
PHPDIR=/opt/php/$BUILDTAG&#60;br /&#62;
MYSQLDIR=/opt/mysql/$MYSQLVERSION&#60;br /&#62;
make distclean&#60;br /&#62;
./configure \&#60;br /&#62;
--prefix=$PHPDIR \&#60;br /&#62;
--with-apxs2=/opt/apache/$APACHEVERSION/bin/apxs \&#60;br /&#62;
--with-config-file-path=$PHPDIR/etc \&#60;br /&#62;
--with-mysql=$MYSQLDIR \&#60;br /&#62;
--with-mysqli=$MYSQLDIR/bin/mysql_config \&#60;br /&#62;
--with-pdo-mysql=$MYSQLDIR \&#60;br /&#62;
--with-zlib=/opt/local \&#60;br /&#62;
--with-curl=/opt/local \&#60;br /&#62;
--with-mcrypt=/opt/local \&#60;br /&#62;
--with-xsl=/opt/local \&#60;br /&#62;
--with-gd=/opt/local \&#60;br /&#62;
--with-jpeg-dir=/opt/local \&#60;br /&#62;
--with-png-dir=/opt/local \&#60;br /&#62;
--with-zlib-dir=/opt/local \&#60;br /&#62;
--with-xpm-dir=/opt/local \&#60;br /&#62;
--with-freetype-dir=/opt/local \&#60;br /&#62;
--with-iconv=/opt/local \&#60;br /&#62;
--enable-mbstring \&#60;br /&#62;
--enable-exif \&#60;br /&#62;
--enable-cli \&#60;br /&#62;
--enable-pcntl \&#60;br /&#62;
--enable-sockets \&#60;br /&#62;
--enable-ftp \&#60;br /&#62;
--enable-soap&#60;br /&#62;
export EXTRA_CFLAGS=&#34;-lresolv&#34;&#60;br /&#62;
make&#60;br /&#62;
make install
&#60;/p&#62;</description>
</item>
<item>
<title>Dan on "Warning: date() [function.date] error with php"</title>
<link>http://diymacserver.com/forum/topic/warning-date-functiondate-error-with-php#post-682</link>
<pubDate>Mon, 20 Jul 2009 06:46:14 +0000</pubDate>
<dc:creator>Dan</dc:creator>
<guid isPermaLink="false">682@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I am working with a fresh install of php 5.3.0 and I am getting blocks of errors like this:&#60;/p&#62;
&#60;p&#62;Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Anchorage' for 'AKDT/-8.0/DST' instead in /Users/dan/Sites/pfrr/wp-includes/functions.php on line 112&#60;/p&#62;
&#60;p&#62;from pages in wordpress.&#60;br /&#62;
I did a few google searches but mostly found web sites with similar errors, not discussions about what is causing the error.&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>Whisller on "Install libxml on Leopard by hand."</title>
<link>http://diymacserver.com/forum/topic/install-libxml-on-leopard-by-hand#post-508</link>
<pubDate>Sat, 12 Jul 2008 19:23:45 +0000</pubDate>
<dc:creator>Whisller</dc:creator>
<guid isPermaLink="false">508@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hello :)&#60;/p&#62;
&#60;p&#62;I have a big problem with libxml and leopard.&#60;br /&#62;
First I tried recompile on old version of libxml but when I'm tried recompile PHP &#34;make&#34; return me an error ( this same like in PHP bug tracker ). So I decides to remove all libxml files with libxml2.2.dylib and libxml2.dylib file and it was biggest mistake at this day :/&#60;br /&#62;
After it my leopard just crashed, after recovery I found one article about it here &#60;a href=&#34;http://jamesclarke.info/notes/libxml2/&#34; rel=&#34;nofollow&#34;&#62;http://jamesclarke.info/notes/libxml2/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So maybe you will know how I can upgrade libxml to the newest version on Leopard.&#60;/p&#62;
&#60;p&#62;Best regards,&#60;br /&#62;
Whisller.
&#60;/p&#62;</description>
</item>
<item>
<title>mastertk on "PHP doesn&#039;t install &#039;&#039;addtype&#039;&#039; in httpd.conf"</title>
<link>http://diymacserver.com/forum/topic/php-doesnt-install-addtype-in-httpdconf#post-520</link>
<pubDate>Sun, 10 Aug 2008 08:59:47 +0000</pubDate>
<dc:creator>mastertk</dc:creator>
<guid isPermaLink="false">520@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hello,&#60;br /&#62;
I am new in the webserver installing on mac.&#60;br /&#62;
I have a mac mini (1.83GHZ) and I have installed mysql and apache with success,&#60;br /&#62;
I installed everything within the root account.&#60;br /&#62;
But when i compile php it doesn't add these two lines in httpd.conf&#60;/p&#62;
&#60;p&#62;AddType application/x-httpd-php .php .phtml&#60;br /&#62;
AddType application/x-httpd-php-source .phps&#60;/p&#62;
&#60;p&#62;The strange thing is that this line does get added:&#60;/p&#62;
&#60;p&#62;LoadModule php5_module modules/libphp5.so&#60;/p&#62;
&#60;p&#62;I used PHP 5.2.6&#60;br /&#62;
And Apache 2.2.9&#60;br /&#62;
and mysql: Mac OS X 10.5 (x86)		5.0.67&#60;br /&#62;
With the source file: Compressed GNU TAR archive (tar.gz)		5.0.67&#60;/p&#62;
&#60;p&#62;I hope someone can tell me how to solve this problem.&#60;/p&#62;
&#60;p&#62;KInd Regards, Thomas
&#60;/p&#62;</description>
</item>
<item>
<title>Whisller on "Install newest PHP ( 5.2.6 ) on Leopard - with &#34;Leopard&#34; Apache installation."</title>
<link>http://diymacserver.com/forum/topic/install-newest-php-526-on-leopard-with-leopard-apache-installation#post-493</link>
<pubDate>Sun, 15 Jun 2008 17:36:27 +0000</pubDate>
<dc:creator>Whisller</dc:creator>
<guid isPermaLink="false">493@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I have a fresh version of Leopard - just reinstalled. And I'm tried to install PHP ( I must recompile it because I must add support for PostgreSQL ).&#60;br /&#62;
So I tried install it on apache which is installed default by Leopard ( configuration is good etc. so why don't use it :) ), but it was first mistake ;p&#60;br /&#62;
After sudo make install and trying to restart apache it return an critical error.&#60;/p&#62;
&#60;p&#62;httpd: Syntax error on line 114 of /private/etc/apache2/httpd.conf: Cannot load /usr/libexec/apache2/libphp5.so into server: dlopen(/usr/libexec/apache2/libphp5.so, 10): no suitable image found. Did find:\n\t/usr/libexec/apache2/libphp5.so: mach-o, but wrong architecture&#60;/p&#62;
&#60;p&#62;Huh and what now, I say to myself. But google show me the small information. And I found that Apache from Leopard is on 64-bit architecture.&#60;br /&#62;
I checked it by httpd -V, and it is true&#60;/p&#62;
&#60;p&#62;Server version: Apache/2.2.6 (Unix)&#60;br /&#62;
Architecture:   64-bit&#60;/p&#62;
&#60;p&#62;So I tried to use CFLAGS='-arch x86_64' before ./configure, but after It I cannot do make because it crash all the time :/&#60;br /&#62;
I try to remove all PHP files.&#60;/p&#62;
&#60;p&#62;Maybe you also saw this error?&#60;br /&#62;
I will be glad if someone will help me.
&#60;/p&#62;</description>
</item>
<item>
<title>crackmigg on "Apache not starting with compiled PHP"</title>
<link>http://diymacserver.com/forum/topic/apache-not-starting-with-compiled-php#post-477</link>
<pubDate>Tue, 20 May 2008 17:44:21 +0000</pubDate>
<dc:creator>crackmigg</dc:creator>
<guid isPermaLink="false">477@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I followed the instructions to compile PHP 5.2.6 under leopard, while keeping the installed Apache 2.2.8 from Leopard intact. I compiled PHP5 with the last line changed to /usr/sbin/apxs (original Leopard layout), and everything worked without errors.&#60;/p&#62;
&#60;p&#62;When I start Apache it starts without error message, but when opening 127.0.0.1 in my browser it &#34;Failed to connect&#34;... the Apache Server is not responding. The when I deactivate the php5_module line in the httpd.conf, everything (except PHP5) works, and the server responds as expected, but with the module it stops working. The line in the httpd.conf is:&#60;/p&#62;
&#60;p&#62;LoadModule php5_module libexec/apache2/libphp5.so&#60;/p&#62;
&#60;p&#62;When trying command-line php it says it is version 5.2.5 (the preinstalled version), not 5.2.6. So where did my compiled PHP go? How do I get it to work with Apache? Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>Sjaq on "Leopard iconv and php5"</title>
<link>http://diymacserver.com/forum/topic/leopard-iconv-and-php5#post-412</link>
<pubDate>Tue, 13 Nov 2007 10:43:02 +0000</pubDate>
<dc:creator>Sjaq</dc:creator>
<guid isPermaLink="false">412@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I'm trying to compile my own version of php with a lot of options, but I can't get iconv to work. I read some reports on the internet about this problem but can't find a fix.&#60;/p&#62;
&#60;p&#62;my configurate command:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;./configure --prefix=/usr/local/php5 \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--with-zlib \
--with-zlib-dir=/usr \
--with-openssl \
--enable-exif \
--enable-ftp \
--enable-mbstring \
--enable-mbregex \
--enable-sockets \
--with-mysql=/usr/local/mysql \
--with-mysqli=/usr/local/mysql/bin/mysql_config \
--with-apxs2=/usr/local/apache/bin/apxs \
--enable-zip \
--with-xsl=/usr \
--with-readline=/usr/local \
--with-mcrypt \
--with-mhash \
--with-openssl-dir=/usr/local \
--with-imagick=/usr/local \
--with-imap=/usr/local/src/imap-2006k \
--enable-xdebug \
--enable-zip \
--enable-memcache \
--enable-debug \
--with-fileinfo \
--enable-apc \
--with-gd=/usr/local \
--with-ttf=/usr/local \
--with-freetype-dir=/usr/local \
--enable-gd-native-ttf \
--with-xpm-dir=/usr/local \
--with-png-dir=/usr/local \
--with-jpeg-dir=/usr/local \
--with-libxml-dir=/usr \
--with-ldap=/usr \
--with-kerberos=/usr \
--enable-trans-sid \
--enable-dbx \
--with-iodbc=/usr \
--with-curl=/usr \
--with-config-file-path=/usr/local/php5/conf \
--sysconfdir=/usr/local/php5/conf \
--with-imap-ssl=/usr/local \
--enable-force-cgi-redirect \
--enable-fastcgi \
--with-iconv \
--with-ncurses=/sw&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I've tested a few options&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;--with-iconv=/usr
--with-iconv=/opt/local #macports
--with-iconv&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But I get this error every time when I try to &#34;make&#34;:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Undefined symbols:
  \\&#38;quot;_iconv_close\\&#38;quot;, referenced from:
      _php_iconv_string in iconv.o
      __php_iconv_strlen in iconv.o
      __php_iconv_strpos in iconv.o
      __php_iconv_mime_decode in iconv.o
      __php_iconv_mime_decode in iconv.o
      __php_iconv_mime_decode in iconv.o
      _zif_iconv_substr in iconv.o
      _zif_iconv_substr in iconv.o
      _php_iconv_stream_filter_dtor in iconv.o
      _zif_iconv_mime_encode in iconv.o
      _zif_iconv_mime_encode in iconv.o
  \\&#38;quot;_iconv_open\\&#38;quot;, referenced from:
      _php_iconv_string in iconv.o
      __php_iconv_strlen in iconv.o
      __php_iconv_strpos in iconv.o
      __php_iconv_mime_decode in iconv.o
      __php_iconv_mime_decode in iconv.o
      _zif_iconv_substr in iconv.o
      _zif_iconv_substr in iconv.o
      _zif_iconv_mime_encode in iconv.o
      _zif_iconv_mime_encode in iconv.o
      _php_iconv_stream_filter_factory_create in iconv.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
make: *** [sapi/cli/php] Error 1&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And when I use &#60;code&#62;--without-iconv&#60;/code&#62; everything installs fine..&#60;br /&#62;
I hope somebody knows how to fix this
&#60;/p&#62;</description>
</item>
<item>
<title>mikeah21 on "Problem with libcurl loading in PHP 4"</title>
<link>http://diymacserver.com/forum/topic/problem-with-libcurl-loading-in-php-4#post-406</link>
<pubDate>Tue, 09 Oct 2007 20:10:45 +0000</pubDate>
<dc:creator>mikeah21</dc:creator>
<guid isPermaLink="false">406@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;&#38;lt;p&#38;gt;Sorry for the longwinded post.  I have spent 2 weeks trying to figure out what the problem is, and am stumped.  Instructions, guidance is appreciated!&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt;MacOSX 10.4.10, PHP 4.4.7, MySql 4.1.22.  PHP was also rebuilt from scratch, before libcurl, because configure was missing on the original OSX installation, and was downloaded from PHP.net.&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt;Using zencart, can't get https to work with paypal express.  https and PHP work otherwise.  Have gone through troubleshooting with zencart and the configuration between the cart and paypal is okay.  I have also tried PHP configure/make using DIYMacServer tutorials.  Both configure and build get through although there are warning messages, but the PHP module installs.  However, openssl does not appear to be configured in libcurl based on phpinfo-&#60;/p&#62;
&#60;p&#62;(curl&#60;br /&#62;
CURL support	enabled&#60;br /&#62;
CURL Information	libcurl/7.16.4 zlib/1.2.3)&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt;which is strange because, after a clean install of libcurl, curl  shows this-&#60;/p&#62;
&#60;p&#62;(curl 7.16.4 (powerpc-apple-darwin8.10.1) libcurl/7.16.4 OpenSSL/0.9.7l zlib/1.2.3&#60;br /&#62;
Protocols: tftp ftp telnet dict ldap http file https ftps&#60;br /&#62;
Features: IPv6 Largefile NTLM SSL libz)&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt;When PHP is rebuilt, each new configures is ran like this:&#60;/p&#62;
&#60;p&#62;sudo rm -RW ./configure&#60;/p&#62;
&#60;p&#62;sudo ./buildconf --force&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt;The last configure looked like this:  './configure' '--prefix=/usr' '--with-zlib' '--with-xml' '--with-zlib-dir=/usr' '--with-openssl' '--enable-exif' '--enable-ftp' '--enable-mbstring' '--enable-mbregex' '--with-mysql=/usr' '--with-mysql-sock=/var/mysql/mysql.sock' '--enable-sockets' '--enable-dbx' '--with-curl=/usr' '--with-config-file-path=/etc' '--sysconfdir=/private/etc' '--without-pear' '--with-gd' '--with-jpeg-dir=/opt/local' '--with-png-dir=/opt/local' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-dependency-tracking' '--with-apxs' '--with-ldap=/usr' '--with-kerberos=/usr' '--enable-cli' '--enable-trans-sid'&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt;This is the log from the last configure:&#60;/p&#62;
&#60;p&#62;This file contains any messages produced by compilers while&#60;br /&#62;
running configure, to aid debugging if configure makes a mistake.&#60;/p&#62;
&#60;p&#62;configure:1605: checking for egrep&#60;br /&#62;
configure:1620: checking for a sed that does not truncate output&#60;br /&#62;
configure:1785: checking host system type&#60;br /&#62;
configure:1885: checking for gcc&#60;br /&#62;
configure:1998: checking whether the C compiler (gcc  ) works&#60;br /&#62;
configure:2014: gcc -o conftest    conftest.c  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2040: checking whether the C compiler (gcc  ) is a cross-compiler&#60;br /&#62;
configure:2045: checking whether we are using GNU C&#60;br /&#62;
configure:2054: gcc -E conftest.c&#60;br /&#62;
configure:2073: checking whether gcc accepts -g&#60;br /&#62;
configure:2106: checking whether gcc and cc understand -c and -o together&#60;br /&#62;
configure:2121: gcc -c conftest.c -o conftest.o 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2122: gcc -c conftest.c -o conftest.o 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2127: cc -c conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2129: cc -c conftest.c -o conftest.o 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2130: cc -c conftest.c -o conftest.o 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2157: checking how to run the C preprocessor&#60;br /&#62;
configure:2178: gcc -E  conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:2238: checking for AIX&#60;br /&#62;
configure:2265: checking if compiler supports -R&#60;br /&#62;
configure:2280: gcc -o conftest -g -O2   conftest.c -R /usr/lib  1&#38;gt;&#38;#38;5&#60;br /&#62;
powerpc-apple-darwin8-gcc-4.0.1: unrecognized option '-R'&#60;br /&#62;
/usr/bin/ld: can't map file: /usr/lib ((os/kern) invalid argument)&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 2273 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;int main() {&#60;/p&#62;
&#60;p&#62;; return 0; }&#60;br /&#62;
configure:2298: checking if compiler supports -Wl,-rpath,&#60;br /&#62;
configure:2313: gcc -o conftest -g -O2   conftest.c -Wl,-rpath,/usr/lib  1&#38;gt;&#38;#38;5&#60;br /&#62;
/usr/bin/ld: unknown flag: -rpath&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 2306 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;int main() {&#60;/p&#62;
&#60;p&#62;; return 0; }&#60;br /&#62;
configure:2339: checking for re2c&#60;br /&#62;
configure:2368: checking whether ln -s works&#60;br /&#62;
configure:2393: checking for mawk&#60;br /&#62;
configure:2393: checking for gawk&#60;br /&#62;
configure:2393: checking for nawk&#60;br /&#62;
configure:2393: checking for awk&#60;br /&#62;
configure:2427: checking for bison&#60;br /&#62;
configure:2461: checking bison version&#60;br /&#62;
configure:2471: checking for flex&#60;br /&#62;
configure:2505: checking for yywrap in -lfl&#60;br /&#62;
configure:2524: gcc -o conftest -g -O2   conftest.c -lfl   1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2548: checking lex output file root&#60;br /&#62;
configure:2569: checking whether yytext is a pointer&#60;br /&#62;
configure:2588: gcc -o conftest -g -O2   conftest.c  -lfl 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2612: checking for working const&#60;br /&#62;
configure:2666: gcc -c -g -O2  conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2691: checking flex version&#60;br /&#62;
configure:2707: checking whether byte ordering is bigendian&#60;br /&#62;
configure:2733: gcc -o conftest -g -O2   conftest.c  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:2945: checking whether to force non-PIC code in shared modules&#60;br /&#62;
configure:3069: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:3089: checking for pthreads_cflags&#60;br /&#62;
configure:3159: checking for pthreads_lib&#60;br /&#62;
configure:3297: checking for AOLserver support&#60;br /&#62;
configure:3538: checking for Apache 1.x module support via DSO through APXS&#60;br /&#62;
configure:4676: checking for mod_charset compatibility option&#60;br /&#62;
configure:4743: checking for member fd in BUFF *&#60;br /&#62;
configure:4762: gcc -c -g -O2  -no-cpp-precomp -I/usr/include/httpd conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
In file included from /usr/include/httpd/ap_config.h:1129,&#60;br /&#62;
                 from /usr/include/httpd/httpd.h:29,&#60;br /&#62;
                 from configure:4756:&#60;br /&#62;
/usr/include/httpd/hsregex.h:22:1: warning: &#34;ap_private_extern&#34; redefined&#60;br /&#62;
In file included from /usr/include/httpd/httpd.h:29,&#60;br /&#62;
                 from configure:4756:&#60;br /&#62;
/usr/include/httpd/ap_config.h:1025:1: warning: this is the location of the previous definition&#60;br /&#62;
configure:4813: checking for Apache 2.0 filter-module support via DSO through APXS&#60;br /&#62;
configure:5635: checking for Apache 2.0 handler-module support via DSO through APXS&#60;br /&#62;
configure:6458: checking for Caudium support&#60;br /&#62;
configure:6788: checking for CLI build&#60;br /&#62;
configure:6851: checking for embedded SAPI library support&#60;br /&#62;
configure:7054: che&#60;br /&#62;
## ---------------- ##&#60;br /&#62;
## Cache variables. ##&#60;br /&#62;
## ---------------- ##&#60;/p&#62;
&#60;p&#62;ac_cv_build=powerpc-apple-darwin8.10.1&#60;br /&#62;
ac_cv_build_alias=powerpc-apple-darwin8.10.1&#60;br /&#62;
ac_cv_c_compiler_gnu=yes&#60;br /&#62;
ac_cv_env_CC_set=&#60;br /&#62;
ac_cv_env_CC_value=&#60;br /&#62;
ac_cv_env_CFLAGS_set=&#60;br /&#62;
ac_cv_env_CFLAGS_value=&#60;br /&#62;
ac_cv_env_CPPFLAGS_set=&#60;br /&#62;
ac_cv_env_CPPFLAGS_value=&#60;br /&#62;
ac_cv_env_CPP_set=&#60;br /&#62;
ac_cv_env_CPP_value=&#60;br /&#62;
ac_cv_env_CXXCPP_set=&#60;br /&#62;
ac_cv_env_CXXCPP_value=&#60;br /&#62;
ac_cv_env_CXXFLAGS_set=&#60;br /&#62;
ac_cv_env_CXXFLAGS_value=&#60;br /&#62;
ac_cv_env_CXX_set=&#60;br /&#62;
ac_cv_env_CXX_value=&#60;br /&#62;
ac_cv_env_LDFLAGS_set=&#60;br /&#62;
ac_cv_env_LDFLAGS_value=&#60;br /&#62;
ac_cv_env_build_alias_set=&#60;br /&#62;
ac_cv_env_build_alias_value=&#60;br /&#62;
ac_cv_env_host_alias_set=&#60;br /&#62;
ac_cv_env_host_alias_value=&#60;br /&#62;
ac_cv_env_target_alias_set=&#60;br /&#62;
ac_cv_env_target_alias_value=&#60;br /&#62;
ac_cv_exeext=&#60;br /&#62;
ac_cv_host=powerpc-apple-darwin8.10.1&#60;br /&#62;
ac_cv_host_alias=powerpc-apple-darwin8.10.1&#60;br /&#62;
ac_cv_objext=o&#60;br /&#62;
ac_cv_prog_ac_ct_CC=gcc&#60;br /&#62;
ac_cv_prog_egrep='grep -E'&#60;br /&#62;
lt_cv_path_SED=/usr/bin/sed&#60;/p&#62;
&#60;p&#62;## ----------------- ##&#60;br /&#62;
## Output variables. ##&#60;br /&#62;
## ----------------- ##&#60;/p&#62;
&#60;p&#62;ALLOCA=''&#60;br /&#62;
AWK=''&#60;br /&#62;
CC='gcc'&#60;br /&#62;
CFLAGS='-g'&#60;br /&#62;
CONFIGURE_COMMAND=' './configure''&#60;br /&#62;
CPP=''&#60;br /&#62;
CPPFLAGS=''&#60;br /&#62;
CXX=''&#60;br /&#62;
CXXCPP=''&#60;br /&#62;
CXXFLAGS=''&#60;br /&#62;
DEBUG_CFLAGS=''&#60;br /&#62;
DEFS=''&#60;br /&#62;
ECHO='echo'&#60;br /&#62;
ECHO_C=''&#60;br /&#62;
ECHO_N='-n'&#60;br /&#62;
ECHO_T=''&#60;br /&#62;
EGREP='grep -E'&#60;br /&#62;
EXEEXT=''&#60;br /&#62;
EXPANDED_BINDIR=''&#60;br /&#62;
EXPANDED_DATADIR=''&#60;br /&#62;
EXPANDED_EXTENSION_DIR=''&#60;br /&#62;
EXPANDED_LIBDIR=''&#60;br /&#62;
EXPANDED_LOCALSTATEDIR=''&#60;br /&#62;
EXPANDED_PEAR_INSTALLDIR=''&#60;br /&#62;
EXPANDED_PHP_CONFIG_FILE_PATH=''&#60;br /&#62;
EXPANDED_PHP_CONFIG_FILE_SCAN_DIR=''&#60;br /&#62;
EXPANDED_SYSCONFDIR=''&#60;br /&#62;
EXTENSION_DIR=''&#60;br /&#62;
EXTRA_INCLUDES=''&#60;br /&#62;
EXTRA_LDFLAGS=''&#60;br /&#62;
EXTRA_LDFLAGS_PROGRAM=''&#60;br /&#62;
EXTRA_LIBS=''&#60;br /&#62;
FRIBIDI_CONFIG=''&#60;br /&#62;
INCLUDES=''&#60;br /&#62;
INCLUDE_PATH=''&#60;br /&#62;
INLINE_CFLAGS=''&#60;br /&#62;
INSTALL_IT=''&#60;br /&#62;
KRB5_CONFIG=''&#60;br /&#62;
LDFLAGS=''&#60;br /&#62;
LEX=''&#60;br /&#62;
LEXLIB=''&#60;br /&#62;
LEX_OUTPUT_ROOT=''&#60;br /&#62;
LIBOBJS=''&#60;br /&#62;
LIBS=''&#60;br /&#62;
LIBTOOL=''&#60;br /&#62;
LN_S=''&#60;br /&#62;
LTLIBOBJS=''&#60;br /&#62;
MYSQL_INCLUDE=''&#60;br /&#62;
MYSQL_LIBS=''&#60;br /&#62;
MYSQL_MODULE_TYPE=''&#60;br /&#62;
NATIVE_RPATHS=''&#60;br /&#62;
OBJEXT='o'&#60;br /&#62;
OCI8_DIR=''&#60;br /&#62;
OCI8_SHARED_LIBADD=''&#60;br /&#62;
OCI8_VERSION=''&#60;br /&#62;
ODBC_INCLUDE=''&#60;br /&#62;
ODBC_LFLAGS=''&#60;br /&#62;
ODBC_LIBS=''&#60;br /&#62;
ODBC_TYPE=''&#60;br /&#62;
OPENSSL_INCDIR_OPT=''&#60;br /&#62;
ORACLE_DIR=''&#60;br /&#62;
ORACLE_SHARED_LIBADD=''&#60;br /&#62;
ORACLE_VERSION=''&#60;br /&#62;
PACKAGE_BUGREPORT=''&#60;br /&#62;
PACKAGE_NAME=''&#60;br /&#62;
PACKAGE_STRING=''&#60;br /&#62;
PACKAGE_TARNAME=''&#60;br /&#62;
PACKAGE_VERSION=''&#60;br /&#62;
PATH_SEPARATOR=':'&#60;br /&#62;
PEAR_INSTALLDIR=''&#60;br /&#62;
PHP_LDFLAGS=''&#60;br /&#62;
PHP_LIBS=''&#60;br /&#62;
PHP_VERSION='4.4.7'&#60;br /&#62;
PKG_CONFIG=''&#60;br /&#62;
PROG_SENDMAIL=''&#60;br /&#62;
PTHREAD_CC=''&#60;br /&#62;
PTHREAD_CFLAGS=''&#60;br /&#62;
PTHREAD_LIBS=''&#60;br /&#62;
RANLIB=''&#60;br /&#62;
RE2C=''&#60;br /&#62;
SHELL='/bin/sh'&#60;br /&#62;
SHLIB_SUFFIX_NAME=''&#60;br /&#62;
SNMP_CONFIG=''&#60;br /&#62;
STRIP=''&#60;br /&#62;
THREADED=''&#60;br /&#62;
YACC=''&#60;br /&#62;
ZEND_EXTRA_LIBS=''&#60;br /&#62;
abs_builddir='/users/mea/Desktop/stufftobuild/php-4.4.7'&#60;br /&#62;
abs_srcdir='/users/mea/Desktop/stufftobuild/php-4.4.7'&#60;br /&#62;
ac_ct_CC='gcc'&#60;br /&#62;
ac_ct_CXX=''&#60;br /&#62;
ac_ct_RANLIB=''&#60;br /&#62;
ac_ct_STRIP=''&#60;br /&#62;
bindir='${exec_prefix}/bin'&#60;br /&#62;
build='powerpc-apple-darwin8.10.1'&#60;br /&#62;
build_alias=''&#60;br /&#62;
build_cpu='powerpc'&#60;br /&#62;
build_os='darwin8.10.1'&#60;br /&#62;
build_vendor='apple'&#60;br /&#62;
datadir='${prefix}/share'&#60;br /&#62;
exec_prefix='NONE'&#60;br /&#62;
host='powerpc-apple-darwin8.10.1'&#60;br /&#62;
host_alias='powerpc-apple-darwin8.10.1'&#60;br /&#62;
host_cpu='powerpc'&#60;br /&#62;
host_os='darwin8.10.1'&#60;br /&#62;
host_vendor='apple'&#60;br /&#62;
includedir='${prefix}/include'&#60;br /&#62;
infodir='${prefix}/info'&#60;br /&#62;
libdir='${exec_prefix}/lib'&#60;br /&#62;
libexecdir='${exec_prefix}/libexec'&#60;br /&#62;
localstatedir='${prefix}/var'&#60;br /&#62;
mandir='${prefix}/man'&#60;br /&#62;
oldincludedir='/usr/include'&#60;br /&#62;
php_abs_top_builddir='/users/mea/Desktop/stufftobuild/php-4.4.7'&#60;br /&#62;
php_abs_top_srcdir='/users/mea/Desktop/stufftobuild/php-4.4.7'&#60;br /&#62;
prefix='NONE'&#60;br /&#62;
program_transform_name='s,x,x,'&#60;br /&#62;
sbindir='${exec_prefix}/sbin'&#60;br /&#62;
sharedstatedir='${prefix}/com'&#60;br /&#62;
sysconfdir='${prefix}/etc'&#60;br /&#62;
target_alias=''&#60;br /&#62;
yazconfig=''&#60;/p&#62;
&#60;p&#62;configure: caught signal 15&#60;br /&#62;
configure: exit 1&#60;br /&#62;
 checking for ANSI C header files&#60;br /&#62;
configure:13958: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14025: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14020: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14053: checking for dirent.h that defines DIR&#60;br /&#62;
configure:14066: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14091: checking for opendir in -ldir&#60;br /&#62;
configure:14110: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -ldir  -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
/usr/bin/ld: can't locate file for: -ldir&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14099 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
/* Override any gcc2 internal prototype to avoid an error.  */&#60;br /&#62;
/* We use char because int might match the return type of a gcc2&#60;br /&#62;
    builtin and then its argument prototype would still apply.  */&#60;br /&#62;
char opendir();&#60;/p&#62;
&#60;p&#62;int main() {&#60;br /&#62;
opendir()&#60;br /&#62;
; return 0; }&#60;br /&#62;
configure:14176: checking for fclose declaration&#60;br /&#62;
configure:14185: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14262: checking for inttypes.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for stdint.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for dirent.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for ApplicationServices/ApplicationServices.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/param.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/types.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/time.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for netinet/in.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for alloca.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for arpa/inet.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for arpa/nameser.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for assert.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for crypt.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:19: error: crypt.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;crypt.h&#38;gt;&#60;br /&#62;
configure:14262: checking for fcntl.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for grp.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for ieeefp.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:20: error: ieeefp.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;ieeefp.h&#38;gt;&#60;br /&#62;
configure:14262: checking for langinfo.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for limits.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for locale.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for monetary.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for mach-o/dyld.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for netdb.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for pwd.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for resolv.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for signal.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for stdarg.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for stdlib.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for string.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for syslog.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sysexits.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/file.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/mman.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/mount.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/poll.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/resource.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/select.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/socket.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/statfs.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:24: error: sys/statfs.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;sys/statfs.h&#38;gt;&#60;br /&#62;
configure:14262: checking for sys/statvfs.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/vfs.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:21: error: sys/vfs.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;sys/vfs.h&#38;gt;&#60;br /&#62;
configure:14262: checking for sys/sysexits.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:26: error: sys/sysexits.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;sys/sysexits.h&#38;gt;&#60;br /&#62;
configure:14262: checking for sys/varargs.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:25: error: sys/varargs.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;sys/varargs.h&#38;gt;&#60;br /&#62;
configure:14262: checking for sys/wait.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for unistd.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for unix.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14268:18: error: unix.h: No such file or directory&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14267 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;unix.h&#38;gt;&#60;br /&#62;
configure:14262: checking for utime.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/utsname.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for sys/ipc.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14262: checking for dlfcn.h&#60;br /&#62;
configure:14272: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:14301: checking for fopencookie&#60;br /&#62;
configure:14329: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
/usr/bin/ld: Undefined symbols:&#60;br /&#62;
_fopencookie&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14306 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
/* System header to define __stub macros and hopefully few prototypes,&#60;br /&#62;
    which can conflict with char fopencookie(); below.  */&#60;br /&#62;
#include&#60;br /&#62;
/* Override any gcc2 internal prototype to avoid an error.  */&#60;br /&#62;
/* We use char because int might match the return type of a gcc2&#60;br /&#62;
    builtin and then its argument prototype would still apply.  */&#60;br /&#62;
char fopencookie();&#60;/p&#62;
&#60;p&#62;int main() {&#60;/p&#62;
&#60;p&#62;/* The GNU C library defines this for functions which it implements&#60;br /&#62;
    to always fail with ENOSYS.  Some functions are actually named&#60;br /&#62;
    something starting with __ and the normal name is an alias.  */&#60;br /&#62;
#if defined (__stub_fopencookie) &#124;&#124; defined (__stub___fopencookie)&#60;br /&#62;
choke me&#60;br /&#62;
#else&#60;br /&#62;
fopencookie();&#60;br /&#62;
#endif&#60;/p&#62;
&#60;p&#62;; return 0; }&#60;br /&#62;
configure:14473: checking for broken getcwd&#60;br /&#62;
configure:14488: checking for broken libc stdio&#60;br /&#62;
configure:14549: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14533: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14577: checking whether struct tm is in sys/time.h or time.h&#60;br /&#62;
configure:14590: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14611: checking for tm_zone in struct tm&#60;br /&#62;
configure:14624: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14683: checking for tm_gmtoff in struct tm&#60;br /&#62;
configure:14696: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14719: checking for struct flock&#60;br /&#62;
configure:14734: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14761: checking for socklen_t&#60;br /&#62;
configure:14778: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:14804: checking size of intmax_t&#60;br /&#62;
configure:14823: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14817: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14818: error: 'intmax_t' undeclared (first use in this function)&#60;br /&#62;
configure:14818: error: (Each undeclared identifier is reported only once&#60;br /&#62;
configure:14818: error: for each function it appears in.)&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14812 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;stdio.h&#38;gt;&#60;br /&#62;
main()&#60;br /&#62;
{&#60;br /&#62;
  FILE *f=fopen(&#34;conftestval&#34;, &#34;w&#34;);&#60;br /&#62;
  if (!f) exit(1);&#60;br /&#62;
  fprintf(f, &#34;%d\n&#34;, sizeof(intmax_t));&#60;br /&#62;
  exit(0);&#60;br /&#62;
}&#60;br /&#62;
configure:14843: checking size of size_t&#60;br /&#62;
configure:14862: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14856: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14882: checking size of ssize_t&#60;br /&#62;
configure:14901: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14895: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14896: error: 'ssize_t' undeclared (first use in this function)&#60;br /&#62;
configure:14896: error: (Each undeclared identifier is reported only once&#60;br /&#62;
configure:14896: error: for each function it appears in.)&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14890 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;stdio.h&#38;gt;&#60;br /&#62;
main()&#60;br /&#62;
{&#60;br /&#62;
  FILE *f=fopen(&#34;conftestval&#34;, &#34;w&#34;);&#60;br /&#62;
  if (!f) exit(1);&#60;br /&#62;
  fprintf(f, &#34;%d\n&#34;, sizeof(ssize_t));&#60;br /&#62;
  exit(0);&#60;br /&#62;
}&#60;br /&#62;
configure:14921: checking size of ptrdiff_t&#60;br /&#62;
configure:14940: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14934: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14935: error: 'ptrdiff_t' undeclared (first use in this function)&#60;br /&#62;
configure:14935: error: (Each undeclared identifier is reported only once&#60;br /&#62;
configure:14935: error: for each function it appears in.)&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 14929 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;stdio.h&#38;gt;&#60;br /&#62;
main()&#60;br /&#62;
{&#60;br /&#62;
  FILE *f=fopen(&#34;conftestval&#34;, &#34;w&#34;);&#60;br /&#62;
  if (!f) exit(1);&#60;br /&#62;
  fprintf(f, &#34;%d\n&#34;, sizeof(ptrdiff_t));&#60;br /&#62;
  exit(0);&#60;br /&#62;
}&#60;br /&#62;
configure:14960: checking size of long long&#60;br /&#62;
configure:14979: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:14973: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:14999: checking size of long long int&#60;br /&#62;
configure:15018: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:15012: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15038: checking size of long&#60;br /&#62;
configure:15057: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:15051: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15077: checking size of int&#60;br /&#62;
configure:15096: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:15090: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15117: checking for st_blksize in struct stat&#60;br /&#62;
configure:15130: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15152: checking for st_blocks in struct stat&#60;br /&#62;
configure:15165: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15192: checking for st_rdev in struct stat&#60;br /&#62;
configure:15205: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15227: checking for size_t&#60;br /&#62;
configure:15260: checking for uid_t in sys/types.h&#60;br /&#62;
configure:15295: checking for struct sockaddr_storage&#60;br /&#62;
configure:15308: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15340: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15353: checking for IPv6 support&#60;br /&#62;
configure:15367: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15385: checking for vprintf&#60;br /&#62;
configure:15413: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15397: warning: conflicting types for built-in function 'vprintf'&#60;br /&#62;
configure:15557: checking for alphasort&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for asctime_r&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for chroot&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for ctime_r&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for cuserid&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
/usr/bin/ld: Undefined symbols:&#60;br /&#62;
_cuserid&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 15562 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
/* System header to define __stub macros and hopefully few prototypes,&#60;br /&#62;
    which can conflict with char cuserid(); below.  */&#60;br /&#62;
#include&#60;br /&#62;
/* Override any gcc2 internal prototype to avoid an error.  */&#60;br /&#62;
/* We use char because int might match the return type of a gcc2&#60;br /&#62;
    builtin and then its argument prototype would still apply.  */&#60;br /&#62;
char cuserid();&#60;/p&#62;
&#60;p&#62;int main() {&#60;/p&#62;
&#60;p&#62;/* The GNU C library defines this for functions which it implements&#60;br /&#62;
    to always fail with ENOSYS.  Some functions are actually named&#60;br /&#62;
    something starting with __ and the normal name is an alias.  */&#60;br /&#62;
#if defined (__stub_cuserid) &#124;&#124; defined (__stub___cuserid)&#60;br /&#62;
choke me&#60;br /&#62;
#else&#60;br /&#62;
cuserid();&#60;br /&#62;
#endif&#60;/p&#62;
&#60;p&#62;; return 0; }&#60;br /&#62;
configure:15557: checking for crypt&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for flock&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for ftok&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for funopen&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for gai_strerror&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for gcvt&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for getlogin&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for getprotobyname&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for getprotobynumber&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for getservbyname&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for getservbyport&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for getrusage&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for gettimeofday&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for gmtime_r&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for isascii&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'isascii'&#60;br /&#62;
configure:15557: checking for link&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for localtime_r&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for lockf&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for lrand48&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for memcpy&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'memcpy'&#60;br /&#62;
configure:15557: checking for memmove&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'memmove'&#60;br /&#62;
configure:15557: checking for mkstemp&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for mmap&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for nl_langinfo&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for perror&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for poll&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for putenv&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for realpath&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for random&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for rand_r&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for regcomp&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for res_search&#60;br /&#62;
configure:15557: checking for scandir&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for setitimer&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for setlocale&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for localeconv&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for setsockopt&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for setvbuf&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for shutdown&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for sin&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'sin'&#60;br /&#62;
configure:15557: checking for snprintf&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'snprintf'&#60;br /&#62;
configure:15557: checking for srand48&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for srandom&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for statfs&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for statvfs&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for std_syslog&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
/usr/bin/ld: Undefined symbols:&#60;br /&#62;
_std_syslog&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 15562 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
/* System header to define __stub macros and hopefully few prototypes,&#60;br /&#62;
    which can conflict with char std_syslog(); below.  */&#60;br /&#62;
#include&#60;br /&#62;
/* Override any gcc2 internal prototype to avoid an error.  */&#60;br /&#62;
/* We use char because int might match the return type of a gcc2&#60;br /&#62;
    builtin and then its argument prototype would still apply.  */&#60;br /&#62;
char std_syslog();&#60;/p&#62;
&#60;p&#62;int main() {&#60;/p&#62;
&#60;p&#62;/* The GNU C library defines this for functions which it implements&#60;br /&#62;
    to always fail with ENOSYS.  Some functions are actually named&#60;br /&#62;
    something starting with __ and the normal name is an alias.  */&#60;br /&#62;
#if defined (__stub_std_syslog) &#124;&#124; defined (__stub___std_syslog)&#60;br /&#62;
choke me&#60;br /&#62;
#else&#60;br /&#62;
std_syslog();&#60;br /&#62;
#endif&#60;/p&#62;
&#60;p&#62;; return 0; }&#60;br /&#62;
configure:15557: checking for strcasecmp&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for strcoll&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for strdup&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'strdup'&#60;br /&#62;
configure:15557: checking for strerror&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for strftime&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'strftime'&#60;br /&#62;
configure:15557: checking for strstr&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'strstr'&#60;br /&#62;
configure:15557: checking for strtok_r&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for symlink&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for tempnam&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for tzset&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for unsetenv&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for usleep&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for utime&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15557: checking for vsnprintf&#60;br /&#62;
configure:15585: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15569: warning: conflicting types for built-in function 'vsnprintf'&#60;br /&#62;
configure:15611: checking for getaddrinfo&#60;br /&#62;
configure:15623: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15669: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:15639: warning: incompatible implicit declaration of built-in function 'memset'&#60;br /&#62;
configure:15643: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15647: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15655: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15659: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15664: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15701: checking for strlcat&#60;br /&#62;
configure:15729: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15701: checking for strlcpy&#60;br /&#62;
configure:15729: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15701: checking for getopt&#60;br /&#62;
configure:15729: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:15756: checking whether utime accepts a null argument&#60;br /&#62;
configure:15777: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:15771: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:15803: checking for working alloca.h&#60;br /&#62;
configure:15836: checking for alloca&#60;br /&#62;
configure:15869: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:16036: checking for declared timezone&#60;br /&#62;
configure:16057: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:16083: checking for type of reentrant time-related functions&#60;br /&#62;
configure:16112: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:16104: warning: assignment makes integer from pointer without a cast&#60;br /&#62;
configure:16105: error: too many arguments to function 'asctime_r'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 16094 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;#include &#38;lt;time.h&#38;gt;&#60;/p&#62;
&#60;p&#62;main() {&#60;br /&#62;
char buf[27];&#60;br /&#62;
struct tm t;&#60;br /&#62;
time_t old = 0;&#60;br /&#62;
int r, s;&#60;/p&#62;
&#60;p&#62;s = gmtime_r(&#38;#38;old, &#38;#38;t);&#60;br /&#62;
r = (int) asctime_r(&#38;#38;t, buf, 26);&#60;br /&#62;
if (r == s &#38;#38;&#38;#38; s == 0) return (0);&#60;br /&#62;
return (1);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;configure:16142: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:16135: error: too many arguments to function 'asctime_r'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 16126 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;#include &#38;lt;time.h&#38;gt;&#60;br /&#62;
main() {&#60;br /&#62;
  struct tm t, *s;&#60;br /&#62;
  time_t old = 0;&#60;br /&#62;
  char buf[27], *p;&#60;/p&#62;
&#60;p&#62;  s = gmtime_r(&#38;#38;old, &#38;#38;t);&#60;br /&#62;
  p = asctime_r(&#38;#38;t, buf, 26);&#60;br /&#62;
  if (p == buf &#38;#38;&#38;#38; s == &#38;#38;t) return (0);&#60;br /&#62;
  return (1);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;configure:16180: checking for readdir_r&#60;br /&#62;
configure:16208: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:16230: checking for type of readdir_r&#60;br /&#62;
configure:16266: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lm  1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:16258: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:16384: checking whether to include debugging symbols&#60;br /&#62;
configure:16417: checking layout of installed files&#60;br /&#62;
configure:16451: checking path to configuration file&#60;br /&#62;
configure:16487: checking directory to be scanned for configuration files&#60;br /&#62;
configure:16517: checking whether to enable safe mode by default&#60;br /&#62;
configure:16552: checking for safe mode exec dir&#60;br /&#62;
configure:16593: checking whether to enable PHP's own SIGCHLD handler&#60;br /&#62;
configure:16630: checking whether to enable magic quotes by default&#60;br /&#62;
configure:16667: checking whether to enable runpaths&#60;br /&#62;
configure:16692: checking whether to explicitly link against libgcc&#60;br /&#62;
configure:16771: checking whether to enable short tags by default&#60;br /&#62;
configure:16808: checking whether to enable dmalloc&#60;br /&#62;
configure:16896: checking whether to enable IPv6 support&#60;br /&#62;
configure:16926: checking whether to enable versioning&#60;br /&#62;
configure:16978: checking for OpenSSL support&#60;br /&#62;
configure:17024: checking for Kerberos support&#60;br /&#62;
configure:17323: checking for krb5-config&#60;br /&#62;
configure:17682: checking for pkg-config&#60;br /&#62;
configure:17870: checking for OpenSSL version&#60;br /&#62;
configure:18010: checking for CRYPTO_free in -lcrypto&#60;br /&#62;
configure:18029: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lcrypto  -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:18169: checking for SSL_CTX_set_ssl_version in -lssl&#60;br /&#62;
configure:18188: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lssl  -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcrypto 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:18315: checking for PCRE support&#60;br /&#62;
configure:19063: checking for ZLIB support&#60;br /&#62;
configure:19109: checking if the location of ZLIB install directory is defined&#60;br /&#62;
configure:19503: checking for gzgets in -lz&#60;br /&#62;
configure:19522: gcc -o conftest -g -O2  -no-cpp-precomp  conftest.c -lz  -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:19660: checking whether to enable bc style precision math functions&#60;br /&#62;
configure:19995: checking for BZip2 support&#60;br /&#62;
configure:20594: checking whether to enable calendar conversion support&#60;br /&#62;
configure:20914: checking for cpdflib support&#60;br /&#62;
configure:22134: checking for CRACKlib support&#60;br /&#62;
configure:22599: checking whether to enable ctype functions&#60;br /&#62;
configure:22915: checking for CURL support&#60;br /&#62;
configure:22982: checking for cURL 7.9.8 or greater&#60;br /&#62;
configure:23002: checking for SSL support in libcurl&#60;br /&#62;
configure:23012: checking for SSL library used&#60;br /&#62;
configure:23026: checking for openssl/crypto.h&#60;br /&#62;
configure:23036: gcc -E  -no-cpp-precomp conftest.c &#38;gt;/dev/null 2&#38;gt;conftest.out&#60;br /&#62;
configure:23403: checking for curl_easy_perform in -lcurl&#60;br /&#62;
configure:23422: gcc -o conftest -g -O2  -no-cpp-precomp -L/usr/lib/lib -L/usr/lib/lib  -L/usr/lib/lib -L/usr/lib/lib -lcurl -lssl -lcrypto -lz conftest.c -lcurl  -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:23541: checking for curl_version_info in -lcurl&#60;br /&#62;
configure:23560: gcc -o conftest -g -O2  -no-cpp-precomp -L/usr/lib/lib -L/usr/lib/lib  -L/usr/lib/lib -L/usr/lib/lib -lcurl -lssl -lcrypto -lz conftest.c -lcurl  -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:23868: checking for cyrus imap support&#60;br /&#62;
configure:24834: checking for xDBM support&#60;br /&#62;
configure:25506: checking whether to enable DBA&#60;br /&#62;
configure:25831: checking for GDBM support&#60;br /&#62;
configure:26136: checking for NDBM support&#60;br /&#62;
configure:26438: checking for Berkeley DB4 support&#60;br /&#62;
configure:26761: checking for Berkeley DB3 support&#60;br /&#62;
configure:27084: checking for Berkeley DB2 support&#60;br /&#62;
configure:27404: checking for DBM support&#60;br /&#62;
configure:27745: checking for CDB support&#60;br /&#62;
configure:27799: checking for INI File support&#60;br /&#62;
configure:27853: checking for FlatFile support&#60;br /&#62;
configure:27868: checking whether to enable DBA interface&#60;br /&#62;
configure:28164: checking whether to enable dbase support&#60;br /&#62;
configure:28480: checking whether to enable dbx support&#60;br /&#62;
configure:28792: checking whether to enable direct I/O support&#60;br /&#62;
configure:29106: checking for DOM support&#60;br /&#62;
configure:29820: checking for DOM XSLT support&#60;br /&#62;
configure:29845: checking for DOM EXSLT support&#60;br /&#62;
configure:30488: checking whether to enable EXIF (metadata from images) support&#60;br /&#62;
configure:30804: checking for FrontBase SQL92 (fbsql) support&#60;br /&#62;
configure:31279: checking for FDF support&#60;br /&#62;
configure:32044: checking whether to enable the bundled filePro support&#60;br /&#62;
configure:32360: checking for FriBidi support&#60;br /&#62;
configure:32856: checking whether to enable FTP support&#60;br /&#62;
configure:33173: checking for GD support&#60;br /&#62;
configure:33220: checking for the location of libjpeg&#60;br /&#62;
configure:33247: checking for the location of libpng&#60;br /&#62;
configure:33300: checking for the location of libXpm&#60;br /&#62;
configure:33325: checking for FreeType 1.x support&#60;br /&#62;
configure:33350: checking for FreeType 2&#60;br /&#62;
configure:33375: checking for T1lib support&#60;br /&#62;
configure:33400: checking whether to enable truetype string function in GD&#60;br /&#62;
configure:33425: checking whether to enable JIS-mapped Japanese font support in GD&#60;br /&#62;
configure:33479: checking for fabsf&#60;br /&#62;
configure:33507: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib conftest.c -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:33491: warning: conflicting types for built-in function 'fabsf'&#60;br /&#62;
configure:33479: checking for floorf&#60;br /&#62;
configure:33507: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib conftest.c -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:33491: warning: conflicting types for built-in function 'floorf'&#60;br /&#62;
configure:33639: checking for jpeg_read_header in -ljpeg&#60;br /&#62;
configure:33658: gcc -o conftest -g -O2  -no-cpp-precomp -L/opt/local/lib -L/opt/local/lib  -L/usr/lib/lib -L/usr/lib/lib conftest.c -ljpeg  -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:33922: checking for png_write_image in -lpng&#60;br /&#62;
configure:33941: gcc -o conftest -g -O2  -no-cpp-precomp -L/opt/local/lib -L/opt/local/lib  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -lz conftest.c -lpng  -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:40625: checking for GNU gettext support&#60;br /&#62;
configure:41354: checking for GNU MP support&#60;br /&#62;
configure:42074: checking for hwapi support&#60;br /&#62;
configure:42789: checking for Hyperwave support&#60;br /&#62;
configure:43085: checking for iconv support&#60;br /&#62;
configure:44215: checking for IMAP support&#60;br /&#62;
configure:44261: checking for IMAP Kerberos support&#60;br /&#62;
configure:44286: checking for IMAP SSL support&#60;br /&#62;
configure:46412: checking for Informix support&#60;br /&#62;
configure:47065: checking for Ingres II support&#60;br /&#62;
configure:47818: checking for InterBase support&#60;br /&#62;
configure:48546: checking for Java support&#60;br /&#62;
configure:49383: checking for LDAP support&#60;br /&#62;
configure:51700: checking for 3 arg ldap_set_rebind_proc&#60;br /&#62;
configure:51712: gcc -c -g -O2  -no-cpp-precomp -I/usr/include conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:51735: checking for ldap_parse_result&#60;br /&#62;
configure:51763: gcc -o conftest -g -O2  -no-cpp-precomp -I/usr/include  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib  conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:51735: checking for ldap_parse_reference&#60;br /&#62;
configure:51763: gcc -o conftest -g -O2  -no-cpp-precomp -I/usr/include  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib  conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:51735: checking for ldap_start_tls_s&#60;br /&#62;
configure:51763: gcc -o conftest -g -O2  -no-cpp-precomp -I/usr/include  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib  conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:51789: checking for ldap_bind_s&#60;br /&#62;
configure:51817: gcc -o conftest -g -O2  -no-cpp-precomp -I/usr/include  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib  conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:51865: checking whether to enable multibyte string support&#60;br /&#62;
configure:51911: checking whether to enable multibyte regex support&#60;br /&#62;
configure:51936: checking for external libmbfl&#60;br /&#62;
configure:52701: checking for MCAL support&#60;br /&#62;
configure:53151: checking for mcrypt support&#60;br /&#62;
configure:54312: checking for MCVE support&#60;br /&#62;
configure:54358: checking OpenSSL dir for MCVE&#60;br /&#62;
configure:55780: checking for mhash support&#60;br /&#62;
configure:56235: checking whether to include mime_magic support&#60;br /&#62;
configure:56573: checking for MING support&#60;br /&#62;
configure:57293: checking for mnoGoSearch support&#60;br /&#62;
configure:57752: checking for msession support&#60;br /&#62;
configure:58191: checking for mSQL support&#60;br /&#62;
configure:58683: checking for MSSQL support via FreeTDS&#60;br /&#62;
configure:59350: checking for MySQL support&#60;br /&#62;
configure:59396: checking for specified location of the MySQL UNIX socket&#60;br /&#62;
configure:59453: checking for MySQL UNIX socket location&#60;br /&#62;
configure:61158: checking size of char&#60;br /&#62;
configure:61177: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:61171: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:61198: checking size of int&#60;br /&#62;
configure:61237: checking size of long&#60;br /&#62;
configure:61276: checking size of long long&#60;br /&#62;
configure:61315: checking for size_t&#60;br /&#62;
configure:61348: checking whether time.h and sys/time.h may both be included&#60;br /&#62;
configure:61362: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:61383: checking for uid_t in sys/types.h&#60;br /&#62;
configure:61418: checking for type ulong&#60;br /&#62;
configure:61437: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:61431: error: 'ulong' undeclared (first use in this function)&#60;br /&#62;
configure:61431: error: (Each undeclared identifier is reported only once&#60;br /&#62;
configure:61431: error: for each function it appears in.)&#60;br /&#62;
configure:61431: error: parse error before 'foo'&#60;br /&#62;
configure:61432: error: 'foo' undeclared (first use in this function)&#60;br /&#62;
configure:61433: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 61426 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;stdio.h&#38;gt;&#60;br /&#62;
#include &#38;lt;sys/types.h&#38;gt;&#60;br /&#62;
main()&#60;br /&#62;
{&#60;br /&#62;
  ulong foo;&#60;br /&#62;
  foo++;&#60;br /&#62;
  exit(0);&#60;br /&#62;
}&#60;br /&#62;
configure:61461: checking for type uchar&#60;br /&#62;
configure:61480: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:61474: error: 'uchar' undeclared (first use in this function)&#60;br /&#62;
configure:61474: error: (Each undeclared identifier is reported only once&#60;br /&#62;
configure:61474: error: for each function it appears in.)&#60;br /&#62;
configure:61474: error: parse error before 'foo'&#60;br /&#62;
configure:61475: error: 'foo' undeclared (first use in this function)&#60;br /&#62;
configure:61476: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 61469 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;br /&#62;
#include &#38;lt;stdio.h&#38;gt;&#60;br /&#62;
#include &#38;lt;sys/types.h&#38;gt;&#60;br /&#62;
main()&#60;br /&#62;
{&#60;br /&#62;
  uchar foo;&#60;br /&#62;
  foo++;&#60;br /&#62;
  exit(0);&#60;br /&#62;
}&#60;br /&#62;
configure:61504: checking for type uint&#60;br /&#62;
configure:61523: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:61519: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:61547: checking for type ushort&#60;br /&#62;
configure:61566: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:61562: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure:61590: checking for int8&#60;br /&#62;
configure:61620: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:61614: error: 'int8' undeclared (first use in this function)&#60;br /&#62;
configure:61614: error: (Each undeclared identifier is reported only once&#60;br /&#62;
configure:61614: error: for each function it appears in.)&#60;br /&#62;
configure:61614: error: parse error before 'i'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 61598 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;#ifdef HAVE_STDLIB_H&#60;br /&#62;
#include &#38;lt;stdlib.h&#38;gt;&#60;br /&#62;
#endif&#60;/p&#62;
&#60;p&#62;#ifdef HAVE_STDDEF_H&#60;br /&#62;
#include &#38;lt;stddef.h&#38;gt;&#60;br /&#62;
#endif&#60;/p&#62;
&#60;p&#62;#ifdef HAVE_SYS_TYPES_H&#60;br /&#62;
#include &#38;lt;sys/types.h&#38;gt;&#60;br /&#62;
#endif&#60;/p&#62;
&#60;p&#62;int main()&#60;br /&#62;
{&#60;br /&#62;
    int8 i;&#60;br /&#62;
    return 0;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;configure:61646: checking base type of last arg to accept&#60;br /&#62;
configure:61674: g++ -c   -no-cpp-precomp conftest.C 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:61723: checking return type of qsort&#60;br /&#62;
configure:61741: gcc -c -g -O2  -no-cpp-precomp conftest.c 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:62153: checking for mysql_close in -lmysqlclient&#60;br /&#62;
configure:62172: gcc -o conftest -g -O2  -no-cpp-precomp -L/usr/lib/mysql -L/usr/lib/mysql  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib conftest.c -lmysqlclient  -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:62753: checking for ncurses support&#60;br /&#62;
configure:63779: checking for Oracle (OCI8) support using ORACLE_HOME installation&#60;br /&#62;
configure:63826: checking for Oracle (OCI8) support using Oracle Instant Client&#60;br /&#62;
configure:66392: checking for Adabas support&#60;br /&#62;
configure:66585: checking for SAP DB support&#60;br /&#62;
configure:66715: checking for Solid support&#60;br /&#62;
configure:66859: checking for IBM DB2 support&#60;br /&#62;
configure:66931: checking for Empress support&#60;br /&#62;
configure:67001: checking for Empress local access support&#60;br /&#62;
configure:67087: checking for Birdstep support&#60;br /&#62;
configure:67197: checking for a custom ODBC support&#60;br /&#62;
configure:67231: checking for iODBC support&#60;br /&#62;
configure:67373: checking for Easysoft ODBC-ODBC Bridge support&#60;br /&#62;
configure:67433: checking for unixODBC support&#60;br /&#62;
configure:67493: checking for DBMaker support&#60;br /&#62;
configure:68054: checking for Oracle-ORACLE support&#60;br /&#62;
configure:73128: checking whether to enable user-space object overloading support&#60;br /&#62;
configure:73445: checking whether to enable pcntl support&#60;br /&#62;
configure:73936: checking for PDFlib support&#60;br /&#62;
configure:74063: checking for the location of libtiff&#60;br /&#62;
configure:75562: checking for Verisign Payflow Pro support&#60;br /&#62;
configure:76318: checking for PostgreSQL support&#60;br /&#62;
configure:77750: checking whether to enable POSIX-like functions&#60;br /&#62;
configure:78064: checking for seteuid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for setegid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for setsid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for getsid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for setpgid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for getpgid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for ctermid&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for mkfifo&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for getrlimit&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78064: checking for getlogin&#60;br /&#62;
configure:78064: checking for getgroups&#60;br /&#62;
configure:78092: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:78122: checking for PSPELL support&#60;br /&#62;
configure:78818: checking for QtDOM support&#60;br /&#62;
configure:79477: checking for libedit readline replacement&#60;br /&#62;
configure:79524: checking for readline support&#60;br /&#62;
configure:81287: checking for recode support&#60;br /&#62;
configure:82062: checking whether to enable PHP sessions&#60;br /&#62;
configure:82108: checking for mm support&#60;br /&#62;
configure:82133: checking whether pwrite works&#60;br /&#62;
configure:82166: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:82156: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 82145 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;#include &#38;lt;sys/types.h&#38;gt;&#60;br /&#62;
#include &#38;lt;sys/stat.h&#38;gt;&#60;br /&#62;
#include &#38;lt;fcntl.h&#38;gt;&#60;br /&#62;
#include &#38;lt;unistd.h&#38;gt;&#60;br /&#62;
#include &#38;lt;errno.h&#38;gt;&#60;/p&#62;
&#60;p&#62;    main() {&#60;br /&#62;
    int fd = open(&#34;conftest_in&#34;, O_WRONLY&#124;O_CREAT, 0600);&#60;/p&#62;
&#60;p&#62;    if (fd &#38;lt; 0) exit(1);&#60;br /&#62;
    if (pwrite(fd, &#34;text&#34;, 4, 0) != 4) exit(1);&#60;br /&#62;
    /* Linux glibc breakage until 2.2.5 */&#60;br /&#62;
    if (pwrite(fd, &#34;text&#34;, 4, -1) != -1 &#124;&#124; errno != EINVAL) exit(1);&#60;br /&#62;
    exit(0);&#60;br /&#62;
    }&#60;/p&#62;
&#60;p&#62;configure:82212: gcc -o conftest -g -O2  -no-cpp-precomp  -L/usr/lib/lib -L/usr/lib/lib -L/opt/local/lib -L/opt/local/lib -L/usr/lib/mysql -L/usr/lib/mysql conftest.c -lmysqlclient -lldap -llber -lpng -lz -ljpeg -lcurl -lz -lssl -lcrypto -lm  -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz 1&#38;gt;&#38;#38;5&#60;br /&#62;
configure:82198: error: parse error before 'off64_t'&#60;br /&#62;
configure: In function 'main':&#60;br /&#62;
configure:82202: warning: incompatible implicit declaration of built-in function 'exit'&#60;br /&#62;
configure: failed program was:&#60;br /&#62;
#line 82191 &#34;configure&#34;&#60;br /&#62;
#include &#34;confdefs.h&#34;&#60;/p&#62;
&#60;p&#62;#include &#38;lt;sys/types.h&#38;gt;&#60;br /&#62;
#include &#38;lt;sys/stat.h&#38;gt;&#60;br /&#62;
#include &#38;lt;fcntl.h&#38;gt;&#60;br /&#62;
#include &#38;lt;unistd.h&#38;gt;&#60;br /&#62;
#include &#38;lt;errno.h&#38;gt;&#60;br /&#62;
ssize_t pwrite(int, void *, size_t, off64_t);&#60;br /&#62;
    main() {&#60;br /&#62;
    int fd = open(&#34;conftest_in&#34;, O_WRONLY&#124;O_CREAT, 0600);&#60;/p&#62;
&#60;p&#62;    if (fd &#38;lt; 0) exit(1);&#60;br /&#62;
    if (pwrite(fd, &#34;text&#34;, 4, 0) != 4) exit(1);&#60;br /&#62;
    /* Linux glibc bre</description>
</item>
<item>
<title>Nobby on "php command line interface (cli)"</title>
<link>http://diymacserver.com/forum/topic/php-command-line-interface-cli#post-388</link>
<pubDate>Wed, 13 Jun 2007 09:30:19 +0000</pubDate>
<dc:creator>Nobby</dc:creator>
<guid isPermaLink="false">388@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi, I have followed the instructions here to build my web server. Great Website by the way, I don't know how to thank you enough. I have a query regarding the php command line interface. I have installed php as per the instructions here, using phpinfo(), through apache I can see that version 5.2.0 is installed. However on the command line version, I type in the terminal php -v and it throws up version 4.4.4. I would like to be able to use version 5 from the command line so as to be able to use php's built in SOAP functionality, but have absolutely no idea where to start, is this still referring to the original mac install for command line php? Does anyone know how to correct this? Any help much appreciated.&#60;/p&#62;
&#60;p&#62;Reagrds. Thanks once again Richard5 for this quality site.
&#60;/p&#62;</description>
</item>
<item>
<title>bradrice on "Adding gd after initial install"</title>
<link>http://diymacserver.com/forum/topic/adding-gd-after-initial-install#post-381</link>
<pubDate>Wed, 09 May 2007 16:03:37 +0000</pubDate>
<dc:creator>bradrice</dc:creator>
<guid isPermaLink="false">381@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Is it possible to easily add gd libraries with libpng and libjpg after you have already compiled and installed php? I've followed the instructions under docs and compiled and installed, but now have decided I want to add the gd
&#60;/p&#62;</description>
</item>
<item>
<title>Richard on "Which modules to include in PHP5?"</title>
<link>http://diymacserver.com/forum/topic/which-modules-to-include-in-php5#post-286</link>
<pubDate>Tue, 30 Jan 2007 21:46:47 +0000</pubDate>
<dc:creator>Richard</dc:creator>
<guid isPermaLink="false">286@http://diymacserver.com/forum/</guid>
<description>Yes, haven't tried this myself but try the built-in GD. Add the option Ã‚â€˜Ã‚â€“with-gdÃ‚â€™ to the configure statement.</description>
</item>
<item>
<title>PeterZwarich on "Compiling Php ?"</title>
<link>http://diymacserver.com/forum/topic/compiling-php#post-339</link>
<pubDate>Thu, 08 Mar 2007 19:43:52 +0000</pubDate>
<dc:creator>PeterZwarich</dc:creator>
<guid isPermaLink="false">339@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi - I compiled php as per diymacserver but I have not issued the 'make' command yet.&#60;br /&#62;
I stopped because I rememebered seeing some other options for compiling at phpmac.com. &#60;/p&#62;
&#60;p&#62;I am interested in making additions like exiff, gd, jpg, png.&#60;/p&#62;
&#60;p&#62;My question is:&#60;br /&#62;
 seeing that i have already run Richard's compiling how do I go about making additions?  Do I do it all over again this time including what I have left out?  Or do I run the configure command and make just the additions that I left out?  Then 'make' etc .&#60;/p&#62;
&#60;p&#62;One more thing . . . . I am a photographer so it seems like I may make use of having:&#60;br /&#62;
% --with-gd \ (optional, requires jpeg + png)&#60;br /&#62;
% --with-jpeg-dir=/usr/local \ (optional)&#60;br /&#62;
% --with-png-dir=/usr/local \ (optional)&#60;/p&#62;
&#60;p&#62;is /usr/local the right config if I have installed as per Richard's methods?&#60;br /&#62;
And then I read:&#60;br /&#62;
lib jpeg and png are [needed?] to enable jpeg and png support in GD Lib - you will need LibJPEG and LibPNG installed previously to enable GD&#60;br /&#62;
Where would I get these lib(raries)? and where would they have to go?&#60;/p&#62;
&#60;p&#62;Many questions - many thanks.  I sense I am getting closer to being freed from shared hosting.&#60;/p&#62;
&#60;p&#62;Peter
&#60;/p&#62;</description>
</item>
<item>
<title>vxbush on "multiple file uploading assistance"</title>
<link>http://diymacserver.com/forum/topic/multiple-file-uploading-assistance#post-361</link>
<pubDate>Mon, 23 Apr 2007 21:02:44 +0000</pubDate>
<dc:creator>vxbush</dc:creator>
<guid isPermaLink="false">361@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I have found this web site to be so helpful, and I thank you, Richard, for running it. It has helped me more than once in targeting Mac server problems. &#60;/p&#62;
&#60;p&#62;However, I've hit a wall and I can't seem to get around it. I don't expect the answer to be here, but I would love someone to point me to a solution. &#60;/p&#62;
&#60;p&#62;Situation: We receive data from a variety of sources and generate results from that data. Depending on what was requested, any number of result files may be created. We need a way to send those files via a web form that is internal to our company. &#60;/p&#62;
&#60;p&#62;Problem: I was using JUPload from &#60;a href=&#34;http://www.jupload.biz&#34; rel=&#34;nofollow&#34;&#62;http://www.jupload.biz&#60;/a&#62; as it would allow a user to easily pick multiple files via a nice java-based interface (having multiple single-file fields was too clunky), but I cannot get it to work anymore with the variety of web browsers (Safari, FF, IE). I have tried to contact the developers via their forums and emails but they have basically dropped off the face of the earth. &#60;/p&#62;
&#60;p&#62;Request: Does anyone know of a nice tool that will easily allow multiple file selections for inclusion on a web page? I use Apache 2 and PHP5 installed via the instrux on this site. &#60;/p&#62;
&#60;p&#62;I've scoured the net for other solutions with no luck. I'm hoping someone else has an idea. Thanks so much.
&#60;/p&#62;</description>
</item>
<item>
<title>jtanner on "PHP not compiling"</title>
<link>http://diymacserver.com/forum/topic/php-not-compiling#post-335</link>
<pubDate>Wed, 28 Feb 2007 18:59:36 +0000</pubDate>
<dc:creator>jtanner</dc:creator>
<guid isPermaLink="false">335@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;PHP failed to compile because of multiple symbol definitions.  Output below.  I'm using Apache 2.2.4, MySQL 5.0.27 and PHP 5.2.1.&#60;/p&#62;
&#60;p&#62;Jim&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
$ CFLAGS=\\\\&#34;-arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk\\\\&#34; ./configure --prefix=/usr/local/php5   --mandir=/usr/share/man   --infodir=/usr/share/info   --sysconfdir=/etc   --with-zlib   --with-xml   --with-zlib-dir=/usr   --with-openssl   --enable-exif   --enable-ftp   --enable-mbstring   --enable-mbregex   --enable-sockets   --with-mysql=/usr/local/mysql   --with-mysqli=/usr/local/mysql/bin/mysql_config   --with-apxs2=/usr/local/apache2/bin/apxs&#60;/p&#62;
&#60;p&#62;$ make&#60;/p&#62;
&#60;p&#62;[ cut a bunch of stuff here ]&#60;/p&#62;
&#60;p&#62;/bin/sh /Users/jtanner/src/php/php-5.2.1/libtool --silent --preserve-dup-deps --mode=compile gcc  -I/usr/local/apache2/include  -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp -I/usr/local/apache2/include   -I/usr/local/apache2/include -I/usr/include  -Isapi/apache2handler/ -I/Users/jtanner/src/php/php-5.2.1/sapi/apache2handler/ -DPHP_ATOM_INC -I/Users/jtanner/src/php/php-5.2.1/include -I/Users/jtanner/src/php/php-5.2.1/main -I/Users/jtanner/src/php/php-5.2.1 -I/usr/include/libxml2 -I/Users/jtanner/src/php/php-5.2.1/ext/date/lib -I/Users/jtanner/src/php/php-5.2.1/ext/mbstring/oniguruma -I/Users/jtanner/src/php/php-5.2.1/ext/mbstring/libmbfl -I/Users/jtanner/src/php/php-5.2.1/ext/mbstring/libmbfl/mbfl -I/usr/local/mysql/include -I/Users/jtanner/src/php/php-5.2.1/TSRM -I/Users/jtanner/src/php/php-5.2.1/Zend  -no-cpp-precomp  -I/usr/include -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk  -c /Users/jtanner/src/php/php-5.2.1/sapi/apache2handler/php_functions.c -o sapi/apache2handler/php_functions.lo&#60;br /&#62;
/bin/sh /Users/jtanner/src/php/php-5.2.1/libtool --silent --preserve-dup-deps --mode=compile gcc  -Imain/ -I/Users/jtanner/src/php/php-5.2.1/main/ -DPHP_ATOM_INC -I/Users/jtanner/src/php/php-5.2.1/include -I/Users/jtanner/src/php/php-5.2.1/main -I/Users/jtanner/src/php/php-5.2.1 -I/usr/include/libxml2 -I/Users/jtanner/src/php/php-5.2.1/ext/date/lib -I/Users/jtanner/src/php/php-5.2.1/ext/mbstring/oniguruma -I/Users/jtanner/src/php/php-5.2.1/ext/mbstring/libmbfl -I/Users/jtanner/src/php/php-5.2.1/ext/mbstring/libmbfl/mbfl -I/usr/local/mysql/include -I/Users/jtanner/src/php/php-5.2.1/TSRM -I/Users/jtanner/src/php/php-5.2.1/Zend  -no-cpp-precomp  -I/usr/include -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk  -c main/internal_functions.c -o main/internal_functions.lo&#60;br /&#62;
gcc -bundle -bundle_loader /usr/local/apache2/bin/httpd -L/usr/lib -L/usr/local/apache2/lib -L/usr/local/apache2/lib -laprutil-1 -lldap -llber -lsqlite3 -lexpat -liconv -L/usr/local/apache2/lib -lapr-1 -lpthread -I/usr/include -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk   -L/usr/local/mysql/lib ext/libxml/libxml.o ext/openssl/openssl.o ext/openssl/xp_ssl.o ext/pcre/pcrelib/pcre_chartables.o ext/pcre/pcrelib/pcre_ucp_searchfuncs.o ext/pcre/pcrelib/pcre_compile.o ext/pcre/pcrelib/pcre_config.o ext/pcre/pcrelib/pcre_exec.o ext/pcre/pcrelib/pcre_fullinfo.o ext/pcre/pcrelib/pcre_get.o ext/pcre/pcrelib/pcre_globals.o ext/pcre/pcrelib/pcre_info.o ext/pcre/pcrelib/pcre_maketables.o ext/pcre/pcrelib/pcre_ord2utf8.o ext/pcre/pcrelib/pcre_refcount.o ext/pcre/pcrelib/pcre_study.o ext/pcre/pcrelib/pcre_tables.o ext/pcre/pcrelib/pcre_try_flipped.o ext/pcre/pcrelib/pcre_valid_utf8.o ext/pcre/pcrelib/pcre_version.o ext/pcre/pcrelib/pcre_xclass.o ext/pcre/php_pcre.o ext/zlib/zlib.o ext/zlib/zlib_fopen_wrapper.o ext/zlib/zlib_filter.o ext/ctype/ctype.o ext/date/php_date.o ext/date/lib/astro.o ext/date/lib/dow.o ext/date/lib/parse_date.o ext/date/lib/parse_tz.o ext/date/lib/timelib.o ext/date/lib/tm2unixtime.o ext/date/lib/unixtime2tm.o ext/dom/php_dom.o ext/dom/attr.o ext/dom/document.o ext/dom/domerrorhandler.o ext/dom/domstringlist.o ext/dom/domexception.o ext/dom/namelist.o ext/dom/processinginstruction.o ext/dom/cdatasection.o ext/dom/documentfragment.o ext/dom/domimplementation.o ext/dom/element.o ext/dom/node.o ext/dom/string_extend.o ext/dom/characterdata.o ext/dom/documenttype.o ext/dom/domimplementationlist.o ext/dom/entity.o ext/dom/nodelist.o ext/dom/text.o ext/dom/comment.o ext/dom/domconfiguration.o ext/dom/domimplementationsource.o ext/dom/entityreference.o ext/dom/notation.o ext/dom/xpath.o ext/dom/dom_iterators.o ext/dom/typeinfo.o ext/dom/domerror.o ext/dom/domlocator.o ext/dom/namednodemap.o ext/dom/userdatahandler.o ext/exif/exif.o ext/filter/filter.o ext/filter/sanitizing_filters.o ext/filter/logical_filters.o ext/filter/callback_filter.o ext/ftp/php_ftp.o ext/ftp/ftp.o ext/hash/hash.o ext/hash/hash_md.o ext/hash/hash_sha.o ext/hash/hash_ripemd.o ext/hash/hash_haval.o ext/hash/hash_tiger.o ext/hash/hash_gost.o ext/hash/hash_snefru.o ext/hash/hash_whirlpool.o ext/hash/hash_adler32.o ext/hash/hash_crc32.o ext/iconv/iconv.o ext/json/json.o ext/json/utf8_to_utf16.o ext/json/utf8_decode.o ext/json/JSON_parser.o ext/mbstring/oniguruma/regcomp.o ext/mbstring/oniguruma/regerror.o ext/mbstring/oniguruma/regexec.o ext/mbstring/oniguruma/reggnu.o ext/mbstring/oniguruma/regparse.o ext/mbstring/oniguruma/regenc.o ext/mbstring/oniguruma/regext.o ext/mbstring/oniguruma/regsyntax.o ext/mbstring/oniguruma/regtrav.o ext/mbstring/oniguruma/regversion.o ext/mbstring/oniguruma/st.o ext/mbstring/oniguruma/enc/unicode.o ext/mbstring/oniguruma/enc/ascii.o ext/mbstring/oniguruma/enc/utf8.o ext/mbstring/oniguruma/enc/euc_jp.o ext/mbstring/oniguruma/enc/euc_tw.o ext/mbstring/oniguruma/enc/euc_kr.o ext/mbstring/oniguruma/enc/sjis.o ext/mbstring/oniguruma/enc/iso8859_1.o ext/mbstring/oniguruma/enc/iso8859_2.o ext/mbstring/oniguruma/enc/iso8859_3.o ext/mbstring/oniguruma/enc/iso8859_4.o ext/mbstring/oniguruma/enc/iso8859_5.o ext/mbstring/oniguruma/enc/iso8859_6.o ext/mbstring/oniguruma/enc/iso8859_7.o ext/mbstring/oniguruma/enc/iso8859_8.o ext/mbstring/oniguruma/enc/iso8859_9.o ext/mbstring/oniguruma/enc/iso8859_10.o ext/mbstring/oniguruma/enc/iso8859_11.o ext/mbstring/oniguruma/enc/iso8859_13.o ext/mbstring/oniguruma/enc/iso8859_14.o ext/mbstring/oniguruma/enc/iso8859_15.o ext/mbstring/oniguruma/enc/iso8859_16.o ext/mbstring/oniguruma/enc/koi8.o ext/mbstring/oniguruma/enc/koi8_r.o ext/mbstring/oniguruma/enc/big5.o ext/mbstring/oniguruma/enc/utf16_be.o ext/mbstring/oniguruma/enc/utf16_le.o ext/mbstring/oniguruma/enc/utf32_be.o ext/mbstring/oniguruma/enc/utf32_le.o ext/mbstring/oniguruma/enc/gb18030.o ext/mbstring/libmbfl/filters/html_entities.o ext/mbstring/libmbfl/filters/mbfilter_7bit.o ext/mbstring/libmbfl/filters/mbfilter_ascii.o ext/mbstring/libmbfl/filters/mbfilter_base64.o ext/mbstring/libmbfl/filters/mbfilter_big5.o ext/mbstring/libmbfl/filters/mbfilter_byte2.o ext/mbstring/libmbfl/filters/mbfilter_byte4.o ext/mbstring/libmbfl/filters/mbfilter_cp1251.o ext/mbstring/libmbfl/filters/mbfilter_cp1252.o ext/mbstring/libmbfl/filters/mbfilter_cp866.o ext/mbstring/libmbfl/filters/mbfilter_cp932.o ext/mbstring/libmbfl/filters/mbfilter_cp936.o ext/mbstring/libmbfl/filters/mbfilter_euc_cn.o ext/mbstring/libmbfl/filters/mbfilter_euc_jp.o ext/mbstring/libmbfl/filters/mbfilter_euc_jp_win.o ext/mbstring/libmbfl/filters/mbfilter_cp51932.o ext/mbstring/libmbfl/filters/mbfilter_euc_kr.o ext/mbstring/libmbfl/filters/mbfilter_euc_tw.o ext/mbstring/libmbfl/filters/mbfilter_htmlent.o ext/mbstring/libmbfl/filters/mbfilter_hz.o ext/mbstring/libmbfl/filters/mbfilter_iso2022_kr.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_1.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_10.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_13.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_14.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_15.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_16.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_2.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_3.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_4.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_5.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_6.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_7.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_8.o ext/mbstring/libmbfl/filters/mbfilter_iso8859_9.o ext/mbstring/libmbfl/filters/mbfilter_jis.o ext/mbstring/libmbfl/filters/mbfilter_iso2022_jp_ms.o ext/mbstring/libmbfl/filters/mbfilter_koi8r.o ext/mbstring/libmbfl/filters/mbfilter_armscii8.o ext/mbstring/libmbfl/filters/mbfilter_qprint.o ext/mbstring/libmbfl/filters/mbfilter_sjis.o ext/mbstring/libmbfl/filters/mbfilter_ucs2.o ext/mbstring/libmbfl/filters/mbfilter_ucs4.o ext/mbstring/libmbfl/filters/mbfilter_uhc.o ext/mbstring/libmbfl/filters/mbfilter_utf16.o ext/mbstring/libmbfl/filters/mbfilter_utf32.o ext/mbstring/libmbfl/filters/mbfilter_utf7.o ext/mbstring/libmbfl/filters/mbfilter_utf7imap.o ext/mbstring/libmbfl/filters/mbfilter_utf8.o ext/mbstring/libmbfl/filters/mbfilter_uuencode.o ext/mbstring/libmbfl/mbfl/mbfilter.o ext/mbstring/libmbfl/mbfl/mbfilter_8bit.o ext/mbstring/libmbfl/mbfl/mbfilter_pass.o ext/mbstring/libmbfl/mbfl/mbfilter_wchar.o ext/mbstring/libmbfl/mbfl/mbfl_convert.o ext/mbstring/libmbfl/mbfl/mbfl_encoding.o ext/mbstring/libmbfl/mbfl/mbfl_filter_output.o ext/mbstring/libmbfl/mbfl/mbfl_ident.o ext/mbstring/libmbfl/mbfl/mbfl_language.o ext/mbstring/libmbfl/mbfl/mbfl_memory_device.o ext/mbstring/libmbfl/mbfl/mbfl_string.o ext/mbstring/libmbfl/mbfl/mbfl_allocators.o ext/mbstring/libmbfl/nls/nls_de.o ext/mbstring/libmbfl/nls/nls_en.o ext/mbstring/libmbfl/nls/nls_ja.o ext/mbstring/libmbfl/nls/nls_kr.o ext/mbstring/libmbfl/nls/nls_neutral.o ext/mbstring/libmbfl/nls/nls_ru.o ext/mbstring/libmbfl/nls/nls_uni.o ext/mbstring/libmbfl/nls/nls_zh.o ext/mbstring/libmbfl/nls/nls_hy.o ext/mbstring/libmbfl/nls/nls_tr.o ext/mbstring/mbstring.o ext/mbstring/php_unicode.o ext/mbstring/mb_gpc.o ext/mbstring/php_mbregex.o ext/mysql/php_mysql.o ext/mysqli/mysqli.o ext/mysqli/mysqli_api.o ext/mysqli/mysqli_prop.o ext/mysqli/mysqli_nonapi.o ext/mysqli/mysqli_fe.o ext/mysqli/mysqli_report.o ext/mysqli/mysqli_repl.o ext/mysqli/mysqli_driver.o ext/mysqli/mysqli_warning.o ext/mysqli/mysqli_exception.o ext/mysqli/mysqli_embedded.o ext/pdo/pdo.o ext/pdo/pdo_dbh.o ext/pdo/pdo_stmt.o ext/pdo/pdo_sql_parser.o ext/pdo/pdo_sqlstate.o ext/pdo_sqlite/pdo_sqlite.o ext/pdo_sqlite/sqlite_driver.o ext/pdo_sqlite/sqlite_statement.o ext/pdo_sqlite/sqlite/src/attach.o ext/pdo_sqlite/sqlite/src/auth.o ext/pdo_sqlite/sqlite/src/btree.o ext/pdo_sqlite/sqlite/src/build.o ext/pdo_sqlite/sqlite/src/callback.o ext/pdo_sqlite/sqlite/src/date.o ext/pdo_sqlite/sqlite/src/delete.o ext/pdo_sqlite/sqlite/src/expr.o ext/pdo_sqlite/sqlite/src/func.o ext/pdo_sqlite/sqlite/src/hash.o ext/pdo_sqlite/sqlite/src/insert.o ext/pdo_sqlite/sqlite/src/legacy.o ext/pdo_sqlite/sqlite/src/main.o ext/pdo_sqlite/sqlite/src/os_unix.o ext/pdo_sqlite/sqlite/src/os_win.o ext/pdo_sqlite/sqlite/src/os.o ext/pdo_sqlite/sqlite/src/pager.o ext/pdo_sqlite/sqlite/src/pragma.o ext/pdo_sqlite/sqlite/src/prepare.o ext/pdo_sqlite/sqlite/src/printf.o ext/pdo_sqlite/sqlite/src/random.o ext/pdo_sqlite/sqlite/src/select.o ext/pdo_sqlite/sqlite/src/table.o ext/pdo_sqlite/sqlite/src/tokenize.o ext/pdo_sqlite/sqlite/src/analyze.o ext/pdo_sqlite/sqlite/src/complete.o ext/pdo_sqlite/sqlite/src/trigger.o ext/pdo_sqlite/sqlite/src/update.o ext/pdo_sqlite/sqlite/src/utf.o ext/pdo_sqlite/sqlite/src/util.o ext/pdo_sqlite/sqlite/src/vacuum.o ext/pdo_sqlite/sqlite/src/vdbeapi.o ext/pdo_sqlite/sqlite/src/vdbeaux.o ext/pdo_sqlite/sqlite/src/vdbe.o ext/pdo_sqlite/sqlite/src/vdbemem.o ext/pdo_sqlite/sqlite/src/where.o ext/pdo_sqlite/sqlite/src/parse.o ext/pdo_sqlite/sqlite/src/opcodes.o ext/pdo_sqlite/sqlite/src/alter.o ext/pdo_sqlite/sqlite/src/vdbefifo.o ext/pdo_sqlite/sqlite/src/vtab.o ext/pdo_sqlite/sqlite/src/loadext.o ext/posix/posix.o ext/reflection/php_reflection.o ext/session/session.o ext/session/mod_files.o ext/session/mod_mm.o ext/session/mod_user.o ext/simplexml/simplexml.o ext/sockets/sockets.o ext/spl/php_spl.o ext/spl/spl_functions.o ext/spl/spl_engine.o ext/spl/spl_iterators.o ext/spl/spl_array.o ext/spl/spl_directory.o ext/spl/spl_sxe.o ext/spl/spl_exceptions.o ext/spl/spl_observer.o ext/sqlite/sqlite.o ext/sqlite/sess_sqlite.o ext/sqlite/pdo_sqlite2.o ext/sqlite/libsqlite/src/opcodes.o ext/sqlite/libsqlite/src/parse.o ext/sqlite/libsqlite/src/encode.o ext/sqlite/libsqlite/src/auth.o ext/sqlite/libsqlite/src/btree.o ext/sqlite/libsqlite/src/build.o ext/sqlite/libsqlite/src/delete.o ext/sqlite/libsqlite/src/expr.o ext/sqlite/libsqlite/src/func.o ext/sqlite/libsqlite/src/hash.o ext/sqlite/libsqlite/src/insert.o ext/sqlite/libsqlite/src/main.o ext/sqlite/libsqlite/src/os.o ext/sqlite/libsqlite/src/pager.o ext/sqlite/libsqlite/src/printf.o ext/sqlite/libsqlite/src/random.o ext/sqlite/libsqlite/src/select.o ext/sqlite/libsqlite/src/table.o ext/sqlite/libsqlite/src/tokenize.o ext/sqlite/libsqlite/src/update.o ext/sqlite/libsqlite/src/util.o ext/sqlite/libsqlite/src/vdbe.o ext/sqlite/libsqlite/src/attach.o ext/sqlite/libsqlite/src/btree_rb.o ext/sqlite/libsqlite/src/pragma.o ext/sqlite/libsqlite/src/vacuum.o ext/sqlite/libsqlite/src/copy.o ext/sqlite/libsqlite/src/vdbeaux.o ext/sqlite/libsqlite/src/date.o ext/sqlite/libsqlite/src/where.o ext/sqlite/libsqlite/src/trigger.o regex/regcomp.o regex/regexec.o regex/regerror.o regex/regfree.o ext/standard/array.o ext/standard/base64.o ext/standard/basic_functions.o ext/standard/browscap.o ext/standard/crc32.o ext/standard/crypt.o ext/standard/cyr_convert.o ext/standard/datetime.o ext/standard/dir.o ext/standard/dl.o ext/standard/dns.o ext/standard/exec.o ext/standard/file.o ext/standard/filestat.o ext/standard/flock_compat.o ext/standard/formatted_print.o ext/standard/fsock.o ext/standard/head.o ext/standard/html.o ext/standard/image.o ext/standard/info.o ext/standard/iptc.o ext/standard/lcg.o ext/standard/link.o ext/standard/mail.o ext/standard/math.o ext/standard/md5.o ext/standard/metaphone.o ext/standard/microtime.o ext/standard/pack.o ext/standard/pageinfo.o ext/standard/quot_print.o ext/standard/rand.o ext/standard/reg.o ext/standard/soundex.o ext/standard/string.o ext/standard/scanf.o ext/standard/syslog.o ext/standard/type.o ext/standard/uniqid.o ext/standard/url.o ext/standard/url_scanner.o ext/standard/var.o ext/standard/versioning.o ext/standard/assert.o ext/standard/strnatcmp.o ext/standard/levenshtein.o ext/standard/incomplete_class.o ext/standard/url_scanner_ex.o ext/standard/ftp_fopen_wrapper.o ext/standard/http_fopen_wrapper.o ext/standard/php_fopen_wrapper.o ext/standard/credits.o ext/standard/css.o ext/standard/var_unserializer.o ext/standard/ftok.o ext/standard/sha1.o ext/standard/user_filters.o ext/standard/uuencode.o ext/standard/filters.o ext/standard/proc_open.o ext/standard/streamsfuncs.o ext/standard/http.o ext/tokenizer/tokenizer.o ext/xml/xml.o ext/xml/compat.o ext/xmlreader/php_xmlreader.o ext/xmlwriter/php_xmlwriter.o TSRM/TSRM.o TSRM/tsrm_strtok_r.o TSRM/tsrm_virtual_cwd.o main/main.o main/snprintf.o main/spprintf.o main/php_sprintf.o main/safe_mode.o main/fopen_wrappers.o main/alloca.o main/php_scandir.o main/php_ini.o main/SAPI.o main/rfc1867.o main/php_content_types.o main/strlcpy.o main/strlcat.o main/mergesort.o main/reentrancy.o main/php_variables.o main/php_ticks.o main/network.o main/php_open_temporary_file.o main/php_logos.o main/output.o main/streams/streams.o main/streams/cast.o main/streams/memory.o main/streams/filter.o main/streams/plain_wrapper.o main/streams/userspace.o main/streams/transports.o main/streams/xp_socket.o main/streams/mmap.o Zend/zend_language_parser.o Zend/zend_language_scanner.o Zend/zend_ini_parser.o Zend/zend_ini_scanner.o Zend/zend_alloc.o Zend/zend_compile.o Zend/zend_constants.o Zend/zend_dynamic_array.o Zend/zend_execute_API.o Zend/zend_highlight.o Zend/zend_llist.o Zend/zend_opcode.o Zend/zend_operators.o Zend/zend_ptr_stack.o Zend/zend_stack.o Zend/zend_variables.o Zend/zend.o Zend/zend_API.o Zend/zend_extensions.o Zend/zend_hash.o Zend/zend_list.o Zend/zend_indent.o Zend/zend_builtin_functions.o Zend/zend_sprintf.o Zend/zend_ini.o Zend/zend_qsort.o Zend/zend_multibyte.o Zend/zend_ts_hash.o Zend/zend_stream.o Zend/zend_iterators.o Zend/zend_interfaces.o Zend/zend_exceptions.o Zend/zend_strtod.o Zend/zend_objects.o Zend/zend_object_handlers.o Zend/zend_objects_API.o Zend/zend_default_classes.o Zend/zend_execute.o sapi/apache2handler/mod_php5.o sapi/apache2handler/sapi_apache2.o sapi/apache2handler/apache_config.o sapi/apache2handler/php_functions.o main/internal_functions.o  -lmysqlclient -liconv -lssl -lcrypto -lz -lssl -lcrypto -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm -lmysqlclient -lz -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm  -o libs/libphp5.bundle &#38;#38;&#38;#38; cp libs/libphp5.bundle libs/libphp5.so&#60;br /&#62;
/usr/bin/ld: warning multiple definitions of symbol _pcre_callout&#60;br /&#62;
ext/pcre/pcrelib/pcre_globals.o definition of _pcre_callout in section (__DATA,__data)&#60;br /&#62;
/usr/local/apache2/bin/httpd definition of _pcre_callout&#60;br /&#62;
/usr/bin/ld: warning multiple definitions of symbol _pcre_stack_free&#60;br /&#62;
ext/pcre/pcrelib/pcre_globals.o definition of _pcre_stack_free in section (__DATA,__data)&#60;br /&#62;
/usr/local/apache2/bin/httpd definition of _pcre_stack_free&#60;br /&#62;
/usr/bin/ld: warning multiple definitions of symbol _pcre_stack_malloc&#60;br /&#62;
ext/pcre/pcrelib/pcre_globals.o definition of _pcre_stack_malloc in section (__DATA,__data)&#60;br /&#62;
/usr/local/apache2/bin/httpd definition of _pcre_stack_malloc&#60;br /&#62;
/usr/bin/ld: multiple definitions of symbol _CRYPTO_add_lock&#60;br /&#62;
/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/libcrypto.dylib(cryptlib.o) definition of _CRYPTO_add_lock&#60;br /&#62;
/usr/local/mysql/lib/libmysqlclient.a(libtaocrypt_la-misc.o) definition of _CRYPTO_add_lock in section (__TEXT,__text)&#60;br /&#62;
/usr/bin/ld: multiple definitions of symbol _CRYPTO_lock&#60;br /&#62;
/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/libcrypto.dylib(cryptlib.o) definition of _CRYPTO_lock&#60;br /&#62;
/usr/local/mysql/lib/libmysqlclient.a(libtaocrypt_la-misc.o) definition of _CRYPTO_lock in section (__TEXT,__text)&#60;br /&#62;
collect2: ld returned 1 exit status&#60;br /&#62;
make: *** [libs/libphp5.bundle] Error 1
&#60;/p&#62;</description>
</item>
<item>
<title>snozle on "PHP modules not loading"</title>
<link>http://diymacserver.com/forum/topic/php-modules-not-loading#post-296</link>
<pubDate>Fri, 16 Feb 2007 00:42:41 +0000</pubDate>
<dc:creator>snozle</dc:creator>
<guid isPermaLink="false">296@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I've installed PHP version 5.2.1 and I can't seem to get the modules to load properly. I have&#60;br /&#62;
&#60;code&#62;LoadModule php5_module    modules/libphp5.so&#60;br /&#62;
AddType application/x-httpd-php .php .phtml&#60;br /&#62;
AddType application/x-httpd-php-source .phps&#60;/code&#62;&#60;br /&#62;
in my httpd.conf file.&#60;/p&#62;
&#60;p&#62;I have copied the recommended php.ini file from the source to /etc/php.ini and have uncommented the include_path so that it looks like &#60;code&#62;include_path = &#38;quot;.:/php/includes:/usr/local/php5/lib/php&#60;/code&#62; as I was instructed to do after I compiled and installed php.&#60;/p&#62;
&#60;p&#62;If you want to see the error I'm encountering check snozle.com.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Richard on "Problem with sending mail from PHP"</title>
<link>http://diymacserver.com/forum/topic/problem-with-sending-mail-from-php#post-238</link>
<pubDate>Fri, 01 Dec 2006 14:52:37 +0000</pubDate>
<dc:creator>Richard</dc:creator>
<guid isPermaLink="false">238@http://diymacserver.com/forum/</guid>
<description>Do you mean you receive emails from your local postfix server with these error messages?&#60;br /&#62;
&#60;br /&#62;
I guess someone else is sending spam to these fake addresses.&#60;br /&#62;
&#60;br /&#62;
By the way I've looked at your server and tested it with abuse.net tools (might explain the strange lines in your logfile) and you are absolutely not an open relay !!!  X-D</description>
</item>

</channel>
</rss>

