<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/acinclude.m4, branch php-5.1.2RC2</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>- MFH Require re2c 0.9.11 and use correct version notation</title>
<updated>2005-12-24T11:38:05+00:00</updated>
<author>
<name>Marcus Boerger</name>
<email>helly@php.net</email>
</author>
<published>2005-12-24T11:38:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6c2ebc6d76d48964b7311efcb3cdb657fd3dfff1'/>
<id>6c2ebc6d76d48964b7311efcb3cdb657fd3dfff1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bugs #35379 and #35432 by erroring out when the user configures PHP</title>
<updated>2005-11-30T04:47:24+00:00</updated>
<author>
<name>Wez Furlong</name>
<email>wez@php.net</email>
</author>
<published>2005-11-30T04:47:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=046bff25fb2d35de000fc83741d23e4ebe2e7546'/>
<id>046bff25fb2d35de000fc83741d23e4ebe2e7546</id>
<content type='text'>
extensions with conflicting options.

Jani, feel free to refine the way that extensions are detected as shared :)

For this to be foolproof, we either need to guarantee that the extensions have
their PHP_NEW_EXTENSION invoked in the right sequence.  Eg: PDO should be
handled in the configure script before any of the extensions that depend on it
are handled... tricky.

By happy coincidence, the alphabet ensures that pdo is configured before all
the pdo_ extensions, and also before sqlite, so this works for now.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
extensions with conflicting options.

Jani, feel free to refine the way that extensions are detected as shared :)

For this to be foolproof, we either need to guarantee that the extensions have
their PHP_NEW_EXTENSION invoked in the right sequence.  Eg: PDO should be
handled in the configure script before any of the extensions that depend on it
are handled... tricky.

By happy coincidence, the alphabet ensures that pdo is configured before all
the pdo_ extensions, and also before sqlite, so this works for now.

</pre>
</div>
</content>
</entry>
<entry>
<title>MFH: - Fixed header installing under phpize builds</title>
<updated>2005-11-21T23:08:02+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2005-11-21T23:08:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=7243d31ae025ee68fd19dc916f30d0e691a3293e'/>
<id>7243d31ae025ee68fd19dc916f30d0e691a3293e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MFH: bump libxml min version to 2.6.11</title>
<updated>2005-10-13T20:33:40+00:00</updated>
<author>
<name>Rob Richards</name>
<email>rrichards@php.net</email>
</author>
<published>2005-10-13T20:33:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1e0494a714783eeb3341afacdd3c2782c665d83e'/>
<id>1e0494a714783eeb3341afacdd3c2782c665d83e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ws fix</title>
<updated>2005-09-23T09:40:24+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2005-09-23T09:40:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=09f0161160026c5ba5bbee2853d5a360225a3b96'/>
<id>09f0161160026c5ba5bbee2853d5a360225a3b96</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>In NetWare two binaries with the same name can not be loaded in kernel address space(This is the default behaviour for NetWare apache webserver and hence PHP extensions also get loaded in kernel address space) simultaneoulsy. As the current autoconf built mysql extension is built as mysql.nlm this forbids the loading of mysql client binary. To work around this NetWare idiosyncrasy prefixing all the extensions with "php" except php5lib(phpts.dll eqivalent of Windows). I could have named this extensions prefixed with "php_" but "_" is eaten from the exported symbol prefix by the GCC cross compiler for NetWare so sticking to "php".</title>
<updated>2005-09-23T09:25:18+00:00</updated>
<author>
<name>Anantha Kesari H Y</name>
<email>hyanantha@php.net</email>
</author>
<published>2005-09-23T09:25:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5337c02684c08205da17ee28df842d533617c01f'/>
<id>5337c02684c08205da17ee28df842d533617c01f</id>
<content type='text'>
This fixes the issue of not needing "PHP_SUBST(EXTENSIONNAME_SHARED_LIBADD)" in all the extensions especially when they need to be built shared.

--Kamesh

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the issue of not needing "PHP_SUBST(EXTENSIONNAME_SHARED_LIBADD)" in all the extensions especially when they need to be built shared.

--Kamesh

</pre>
</div>
</content>
</entry>
<entry>
<title>MFH</title>
<updated>2005-09-01T08:25:52+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2005-09-01T08:25:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=655cb3aaf7178dc3952338d4c91820399b2acc07'/>
<id>655cb3aaf7178dc3952338d4c91820399b2acc07</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug #33326 (Cannot build extensions with phpize on Macosx).</title>
<updated>2005-08-12T15:15:17+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2005-08-12T15:15:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e46cd60d89336d551724e4b099cad527c738dfc5'/>
<id>e46cd60d89336d551724e4b099cad527c738dfc5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug #34097 (configure failed to initize RE2C="exit 0;" when re2c is not found)</title>
<updated>2005-08-12T13:53:27+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2005-08-12T13:53:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=b31f1681849ebecb37cfc189e14a82aa871a7b50'/>
<id>b31f1681849ebecb37cfc189e14a82aa871a7b50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix macro</title>
<updated>2005-07-18T17:20:24+00:00</updated>
<author>
<name>foobar</name>
<email>sniper@php.net</email>
</author>
<published>2005-07-18T17:20:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a9cd02c0339a5a3eb6274c84ecc78878ba5c5c02'/>
<id>a9cd02c0339a5a3eb6274c84ecc78878ba5c5c02</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
