<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/Makefile.global, branch php-7.2.15</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>Fix bug 76595: Update phpdbg man page</title>
<updated>2018-08-04T04:34:40+00:00</updated>
<author>
<name>Kevin Abel</name>
<email>kevin.abel.0@gmail.com</email>
</author>
<published>2018-07-09T01:37:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=91996e7ee504311ff4eca9dbd5840114f75acbad'/>
<id>91996e7ee504311ff4eca9dbd5840114f75acbad</id>
<content type='text'>
Send phpdbg.1 man page through configure replacements
Update phpdbg.1 man page to include all options
Fixes formatting to be more consistent with php.1
Fix paragraph whitespace and ignore phpdbg.1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Send phpdbg.1 man page through configure replacements
Update phpdbg.1 man page to include all options
Fixes formatting to be more consistent with php.1
Fix paragraph whitespace and ignore phpdbg.1
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove some old sapi/apache_hooks and sapi/apache leftovers</title>
<updated>2017-09-25T19:56:39+00:00</updated>
<author>
<name>Peter Kokot</name>
<email>peterkokot@gmail.com</email>
</author>
<published>2017-09-24T22:23:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3752d18ffecfbefa089c38a999a862c5e44c26a6'/>
<id>3752d18ffecfbefa089c38a999a862c5e44c26a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pull-request/2393:</title>
<updated>2017-02-22T06:47:23+00:00</updated>
<author>
<name>Coenraad Loubser</name>
<email>coenraad@wish.org.za</email>
</author>
<published>2017-02-21T02:02:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9eaf551c86593697805b4f8f75a2d5b83b45fc1e'/>
<id>9eaf551c86593697805b4f8f75a2d5b83b45fc1e</id>
<content type='text'>
    stop make install from clobbering default dot d configuration
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    stop make install from clobbering default dot d configuration
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.6' into PHP-7.0</title>
<updated>2016-02-08T18:29:24+00:00</updated>
<author>
<name>Lior Kaplan</name>
<email>kaplanlior@gmail.com</email>
</author>
<published>2016-02-08T18:29:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fb7d673ef2142f3d11a190b2ce64133728a950af'/>
<id>fb7d673ef2142f3d11a190b2ce64133728a950af</id>
<content type='text'>
* PHP-5.6:
  Align spacing in make install messages
  Add entry for re-fix of #70976 in commit 14e4d393
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  Align spacing in make install messages
  Add entry for re-fix of #70976 in commit 14e4d393
</pre>
</div>
</content>
</entry>
<entry>
<title>Align spacing in make install messages</title>
<updated>2016-02-08T18:27:19+00:00</updated>
<author>
<name>Lior Kaplan</name>
<email>kaplanlior@gmail.com</email>
</author>
<published>2016-02-08T18:27:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6772fbff621e7f39cea9ad7e90ec9380abe100a6'/>
<id>6772fbff621e7f39cea9ad7e90ec9380abe100a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add targets to simplify building PHP with FDO (Feedback Directed Optimisation)</title>
<updated>2015-05-26T14:33:25+00:00</updated>
<author>
<name>Dmitry Stogov</name>
<email>dmitry@zend.com</email>
</author>
<published>2015-05-26T14:33:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=7dac4d449f72d7eb029aa1a8ee87aaf38e17e1c5'/>
<id>7dac4d449f72d7eb029aa1a8ee87aaf38e17e1c5</id>
<content type='text'>
PHP should be built with the folowing steps:

make clean
make -j4 prof-gen
; now php should be trained with some scripts
; for example `sapi/cgi/php -T 1000 /var/www/http/wordpress/index.php &gt; /dev/null`
make prof-clean
make -j4 prof-use

The "properly" trained build may give up to 10% real performance boost!
"Improprly" trained PHP might be even slower.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PHP should be built with the folowing steps:

make clean
make -j4 prof-gen
; now php should be trained with some scripts
; for example `sapi/cgi/php -T 1000 /var/www/http/wordpress/index.php &gt; /dev/null`
make prof-clean
make -j4 prof-use

The "properly" trained build may give up to 10% real performance boost!
"Improprly" trained PHP might be even slower.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaces php5 with php7, without whitespace changes.</title>
<updated>2014-09-20T08:01:44+00:00</updated>
<author>
<name>Florian MARGAINE</name>
<email>florian@margaine.com</email>
</author>
<published>2014-09-20T08:01:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=cf0303e7824c3e20e9db240f9d4e4b154cc2a72d'/>
<id>cf0303e7824c3e20e9db240f9d4e4b154cc2a72d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.5' into PHP-5.6</title>
<updated>2014-03-10T07:55:05+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@php.net</email>
</author>
<published>2014-03-10T07:55:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=aa23d754a9aceb1312a847d588a152e224e08c5b'/>
<id>aa23d754a9aceb1312a847d588a152e224e08c5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not remove *.1, it's not generated by make but configure</title>
<updated>2014-03-10T07:54:20+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@php.net</email>
</author>
<published>2014-03-10T07:54:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a930e047927835db02325e0e7a0ae48da00649e0'/>
<id>a930e047927835db02325e0e7a0ae48da00649e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.5' into PHP-5.6</title>
<updated>2014-01-24T02:35:24+00:00</updated>
<author>
<name>Will Fitch</name>
<email>willf@aweber.com</email>
</author>
<published>2014-01-24T02:35:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a9b40a20fcd6c3c06c62908bc1e7b8a645ecd3c2'/>
<id>a9b40a20fcd6c3c06c62908bc1e7b8a645ecd3c2</id>
<content type='text'>
* PHP-5.5:
  Update gitignore and Makefile for additional entries
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  Update gitignore and Makefile for additional entries
</pre>
</div>
</content>
</entry>
</feed>
