<?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>Alt om ingenting og litt i mellom &#187; extension</title>
	<atom:link href="http://hovenko.no/blog/tag/extension/feed/" rel="self" type="application/rss+xml" />
	<link>https://hovenko.no/blog</link>
	<description>En blogg av Knut-Olav</description>
	<lastBuildDate>Mon, 10 Mar 2025 19:25:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to build PHP extension tidy as shared object</title>
		<link>https://hovenko.no/blog/2010/10/26/how-to-build-php-extension-tidy-as-shared-object/</link>
		<comments>https://hovenko.no/blog/2010/10/26/how-to-build-php-extension-tidy-as-shared-object/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 11:31:26 +0000</pubDate>
		<dc:creator>Knut-Olav</dc:creator>
				<category><![CDATA[English-posts]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[Teknologi]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://hovenko.no/blog/?p=487</guid>
		<description><![CDATA[If you already got a PHP installation setup, you may need another extension/module from the PHP source tree. You can build and install that single module from the source while keeping the rest of the PHP installation intact, but the documentation of building shared PHP modules is poor. In my case I needed the tidy [...]]]></description>
			<content:encoded><![CDATA[<p>If you already got a PHP installation setup, you may need another extension/module from the PHP source tree.</p>
<p>You can build and install that single module from the source while keeping the rest of the PHP installation intact, but the documentation of building shared PHP modules is poor.</p>
<p>In my case I needed the <em>tidy</em> extension, and here&#8217;s how to do it</p>
<pre><code>
 $ # extract the PHP source code and enter the directory
 $ ./configure --with-tidy=shared
 $ find . -name tidy.so
</code></pre>
<p>Then copy the tidy.so file to the modules directory of the PHP installation.</p>
<p>The important part here is the <em>shared</em> keyword, which is poorly documented. I had to inspect a RPM spec file to figure it out.</p>
]]></content:encoded>
			<wfw:commentRss>https://hovenko.no/blog/2010/10/26/how-to-build-php-extension-tidy-as-shared-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
