<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sinkko.org mediaräppänä &#187; building php5 failed</title>
	<atom:link href="http://systemshed.com/blogs/sinkko/tag/building-php5-failed/feed/" rel="self" type="application/rss+xml" />
	<link>http://systemshed.com/blogs/sinkko</link>
	<description>Mediaperheen pää-äänenkannattaja</description>
	<lastBuildDate>Tue, 03 Jan 2012 22:25:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Päivitysvinkkejä PHP5 5.2.11 Debian Lenny</title>
		<link>http://systemshed.com/blogs/sinkko/2009/09/22/paivitysvinkkeja-php5-5211-debian-lenny/</link>
		<comments>http://systemshed.com/blogs/sinkko/2009/09/22/paivitysvinkkeja-php5-5211-debian-lenny/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:56:54 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Kimmo]]></category>
		<category><![CDATA[2.0.35]]></category>
		<category><![CDATA[5.2.11]]></category>
		<category><![CDATA[axps]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[building php5 failed]]></category>
		<category><![CDATA[building php5 fails]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[failed]]></category>
		<category><![CDATA[fails]]></category>
		<category><![CDATA[gd]]></category>
		<category><![CDATA[gdkanji]]></category>
		<category><![CDATA[httpd.conf]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[libiconv]]></category>
		<category><![CDATA[libtool]]></category>
		<category><![CDATA[linking]]></category>
		<category><![CDATA[missing]]></category>
		<category><![CDATA[missing libiconv]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[upgrading]]></category>

		<guid isPermaLink="false">http://systemshed.com/blogs/sinkko/?p=660</guid>
		<description><![CDATA[[See English summary in the end of article] PHP5 on päivittynyt ja korjannut muutamia vakavia tietoturvaongelmia. Kääntäminen tuottaa taas pientä tuskaa GD 2.0.35:n kanssa (gdkanji.so ei löydä libiconv:ia). Tässä pari vinkkiä, pätevät Debian Lennyyn. 1) Libiconv vaaditaan Aiempi PHP5 versio 5.2.8 ei vaatinut erillistä libiconv:ia asennettavaksi tai sitten päivitys Etchistä Lennyyn on muuttanut asian. Asenna libiconv-1.13-1 (konfiguroi, [...]]]></description>
			<content:encoded><![CDATA[<p><em>[See English summary in the end of article]</em></p>
<p><a title="PHP.NET" href="http://www.php.net/downloads.php" target="_blank">PHP5</a> on päivittynyt ja korjannut muutamia vakavia tietoturvaongelmia. Kääntäminen tuottaa taas pientä tuskaa GD 2.0.35:n kanssa (gdkanji.so ei löydä libiconv:ia). Tässä pari vinkkiä, pätevät Debian Lennyyn.</p>
<p><strong>1) Libiconv vaaditaan</strong></p>
<p>Aiempi PHP5 versio 5.2.8 ei vaatinut erillistä libiconv:ia asennettavaksi tai sitten päivitys Etchistä Lennyyn on muuttanut asian. Asenna <a title="Libiconv" href="http://www.gnu.org/software/libiconv/" target="_blank">libiconv-1.13-1</a> (konfiguroi, käännä ja aja ldconfig -v).</p>
<p><strong>2) configure skripti ei löydä juuri asentamaasi libiconvi:ia</strong></p>
<p>Anna siis configure optio &#8211;with-iconv=/usr/local/lib</p>
<p><strong>3) make install ei toimi tyhjällä httpd.conf:illa</strong></p>
<p>Lisää siis /etc/apache2/httpd.conf tiedostoon seuraavat rivit, jotta axps onnistuu:</p>
<p>#LoadModule directive to aid module installations<br />
#LoadModule dummy_module /usr/lib/apache2/modules/mod_dummy.so</p>
<p><strong>4) Aja libtool make install:in jälkeen</strong></p>
<p>libtool &#8211;finish /root/php5/php-5.2.11/libs</p>
<p>Ja voilá! <img src='http://systemshed.com/blogs/sinkko/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em><strong>English summary</strong></em>: Building <a title="PHP.NET" href="http://www.php.net/downloads.php" target="_blank">PHP5 5.2.11</a> fails under Debian Lenny. If you have succesfully configured and compiled PHP with GD and need to upgrade to the latest version, there might be some problems. I had a problem, that configure has a new (un-documented?) prerequisite <a title="Libiconv" href="http://www.gnu.org/software/libiconv/" target="_blank">libiconv 1.13-1</a>. This library needs to be installed and the configure script needs to be applied &#8220;&#8211;with-iconv=&lt;dir&gt;&#8221; where &lt;dir&gt; is the installed library dir, like /usr/local/lib. Then your empty httpd.conf may not comply with axps and therefore you need to add those dummy -module comments as described above. Then configure, compile and install the new PHP5. Remember to run libtool &#8211;finisih for php5 libs at the end. GD version used is the latest stable 2.0.35.</p>
]]></content:encoded>
			<wfw:commentRss>http://systemshed.com/blogs/sinkko/2009/09/22/paivitysvinkkeja-php5-5211-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

