<?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: compile - Recent Topics</title>
<link>http://diymacserver.com/forum/</link>
<description>DIYMacServer &#187; Tag: compile - Recent Topics</description>
<language>en</language>
<pubDate>Wed, 08 Feb 2012 06:43:50 +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>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>abton on "Compiling Postfix on Snow Leopard"</title>
<link>http://diymacserver.com/forum/topic/compiling-postfix-on-snow-leopard#post-702</link>
<pubDate>Mon, 07 Sep 2009 10:35:17 +0000</pubDate>
<dc:creator>abton</dc:creator>
<guid isPermaLink="false">702@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I tried following the instructions on this site to compile Postfix on Snow Leopard and noticed that it tries to use an include file (nameser8_compat.h) that has been removed from the latest XCode SDK.&#60;/p&#62;
&#60;p&#62;After a bit of looking around I found out that this can easily be resolved if you don't mind a little bit of source code editing.&#60;/p&#62;
&#60;p&#62;Find the file src/util/sys_defs.h and then remove the line:&#60;/p&#62;
&#60;p&#62;#define RESOLVE_H_NEEDS_NAMESER8_COMPAT_H&#60;/p&#62;
&#60;p&#62;When you try and build Postfix it will no longer try and include nameser8_compat.h and it will compile happily.&#60;/p&#62;
&#60;p&#62;Just thought I would share this.  I use this site as a reference all the time and it's nice to give something back!
&#60;/p&#62;</description>
</item>
<item>
<title>eulipion2 on "MySQL recompile problems"</title>
<link>http://diymacserver.com/forum/topic/mysql-recompile-problems#post-319</link>
<pubDate>Tue, 20 Feb 2007 23:37:32 +0000</pubDate>
<dc:creator>eulipion2</dc:creator>
<guid isPermaLink="false">319@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;Hello all,&#60;br /&#62;
Bit of a newbie here.  I've installed MySQL via the .dmg for my Powerbook G4 (OS 10.4.8, most recent system updates, Developer Tools 2.4, not 2.4.1), but when I try to recompile with shared libraries I keep getting a lot of make errors.&#60;br /&#62;
1.) is there a log of the make procedure so I can find and post the errors?&#60;br /&#62;
2.) are the directions on the &#34;Compiling MySQL&#34; page accurate?  I'm following the ppc directions exactly.&#60;br /&#62;
3.) does it matter that the .dmg file is version 5.0.27 while the source is 5.0.33?  Is there anything I need to do differently because of this?
&#60;/p&#62;</description>
</item>
<item>
<title>wkanoff on "Unrecognized options:"</title>
<link>http://diymacserver.com/forum/topic/unrecognized-options#post-501</link>
<pubDate>Fri, 20 Jun 2008 06:15:30 +0000</pubDate>
<dc:creator>wkanoff</dc:creator>
<guid isPermaLink="false">501@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;I tried to compile Apache 2.2.9 on a Quicksilver 800 with OS X 10.4.11 and I received the following:&#60;br /&#62;
williams-place:~/Desktop/httpd-2.2.9 wKanoff$ CFLAGS=&#34;-arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -Wno-pointer-sign&#34; \&#60;br /&#62;
&#38;gt; ./configure \&#60;br /&#62;
&#38;gt; --enable-layout=William \&#60;br /&#62;
&#38;gt; --enable-mods-shared=all \&#60;br /&#62;
&#38;gt; --with-ssl=/usr \&#60;br /&#62;
&#38;gt; --with-mpm=prefork \&#60;br /&#62;
&#38;gt; --enable-ssl \&#60;br /&#62;
&#38;gt; --enable-dav \&#60;br /&#62;
&#38;gt; --enable-cache \&#60;br /&#62;
&#38;gt; --enable-proxy \&#60;br /&#62;
&#38;gt; --enable-shared \&#60;br /&#62;
&#38;gt; --disable-static \&#60;br /&#62;
&#38;gt; --disable-unique-id \&#60;br /&#62;
&#38;gt; --disable-ipv6 \&#60;br /&#62;
&#38;gt; --enable-logio \&#60;br /&#62;
&#38;gt; --enable-deflate \&#60;br /&#62;
&#38;gt; --with-ldap \&#60;br /&#62;
&#38;gt; --with-ldap-include=/usr/include \&#60;br /&#62;
&#38;gt; --with-ldap-lib=/usr/lib \&#60;br /&#62;
&#38;gt; --with-included-apr \&#60;br /&#62;
&#38;gt; --enable-ldap \&#60;br /&#62;
&#38;gt; --enable-auth-ldap \&#60;br /&#62;
&#38;gt; --enable-cgi \&#60;br /&#62;
&#38;gt; --enable-cgid \&#60;br /&#62;
&#38;gt; --enable-suexec&#60;br /&#62;
configure: WARNING: Unrecognized options: --enable-shared, --disable-static, --disable-ipv6, --with-ldap, --with-ldap-include, --with-ldap-lib, --enable-auth-ldap
&#60;/p&#62;</description>
</item>
<item>
<title>celtech on "postfix install error"</title>
<link>http://diymacserver.com/forum/topic/postfix-install-error#post-403</link>
<pubDate>Sat, 08 Sep 2007 15:42:36 +0000</pubDate>
<dc:creator>celtech</dc:creator>
<guid isPermaLink="false">403@http://diymacserver.com/forum/</guid>
<description>&#60;p&#62;On running: sudo make install&#60;/p&#62;
&#60;p&#62;I get the error:&#60;/p&#62;
&#60;p&#62;Updating /usr/bin/newaliases...&#60;br /&#62;
mv: cannot resolve /Volumes/backup/postfix-2.4.5/junk: /Volumes/usr&#60;br /&#62;
postfix-install: Error: your mv command has trouble renaming symlinks.&#60;br /&#62;
If you run Linux, upgrade to GNU fileutils-4.0 or better,&#60;br /&#62;
or choose a tempdir that is in the same file system as /usr/bin/newaliases.&#60;br /&#62;
If you run FreeBSD, upgrade to version 5 or better.&#60;br /&#62;
make: *** [install] Error 1&#60;/p&#62;
&#60;p&#62;Anyone else experienced this?
&#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>

</channel>
</rss>

