<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nginx.git/auto/types, branch release-1.15.9</title>
<subtitle>nginx</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/'/>
<entry>
<title>Configure: stop polluting NGX_ namespace.</title>
<updated>2016-06-27T22:00:06+00:00</updated>
<author>
<name>Piotr Sikora</name>
<email>piotrsikora@google.com</email>
</author>
<published>2016-06-27T22:00:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=678991a8f6b4eff4c7e5a5ee308378c2f1e327b7'/>
<id>678991a8f6b4eff4c7e5a5ee308378c2f1e327b7</id>
<content type='text'>
While there, fix the only test that used alternative variable name.

Signed-off-by: Piotr Sikora &lt;piotrsikora@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While there, fix the only test that used alternative variable name.

Signed-off-by: Piotr Sikora &lt;piotrsikora@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: fix build with -Werror=old-style-definition.</title>
<updated>2016-06-27T22:00:05+00:00</updated>
<author>
<name>Piotr Sikora</name>
<email>piotrsikora@google.com</email>
</author>
<published>2016-06-27T22:00:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=70f7141074896fb1ff3e5fc08407ea0f64f2076b'/>
<id>70f7141074896fb1ff3e5fc08407ea0f64f2076b</id>
<content type='text'>
Signed-off-by: Piotr Sikora &lt;piotrsikora@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Piotr Sikora &lt;piotrsikora@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: improved multiple types handling in auto/types/typedef.</title>
<updated>2016-04-01T13:38:30+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2016-04-01T13:38:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=cab0ac3d5086ae87b80b7cc79e6472e6a4bd8ac0'/>
<id>cab0ac3d5086ae87b80b7cc79e6472e6a4bd8ac0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: fixed autotest source code logging.</title>
<updated>2016-04-01T13:38:28+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2016-04-01T13:38:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=622d152b9f936ddc15deac05b3e5b5f60a9d13bb'/>
<id>622d152b9f936ddc15deac05b3e5b5f60a9d13bb</id>
<content type='text'>
Fixed a regression introduced in rev. 434548349838 that prevented
auto/types/sizeof and auto/types/typedef properly reporting autotest
source code to autoconf.err in case of test failure.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed a regression introduced in rev. 434548349838 that prevented
auto/types/sizeof and auto/types/typedef properly reporting autotest
source code to autoconf.err in case of test failure.
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: style fixes for autoconf.err.</title>
<updated>2015-10-24T01:21:33+00:00</updated>
<author>
<name>Piotr Sikora</name>
<email>piotrsikora@google.com</email>
</author>
<published>2015-10-24T01:21:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=33cd01ed5715bb3922033203125d3de46fba19f2'/>
<id>33cd01ed5715bb3922033203125d3de46fba19f2</id>
<content type='text'>
Signed-off-by: Piotr Sikora &lt;piotrsikora@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Piotr Sikora &lt;piotrsikora@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: fixed type max value detection.</title>
<updated>2015-03-17T23:04:39+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2015-03-17T23:04:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=b89e3bc03448cb83cc339781a6037e6a73954c01'/>
<id>b89e3bc03448cb83cc339781a6037e6a73954c01</id>
<content type='text'>
The code tried to use suffixes for "long" and "long long" types, but
it never worked as intended due to the bug in the shell code.  Also,
the max value for any 64-bit type other than "long long" on platforms
with 32-bit "long" would be incorrect if the bug was fixed.

So instead of fixing the bug in the shell code, always use the "int"
constant for 32-bit types, and "long long" constant for 64-bit types.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The code tried to use suffixes for "long" and "long long" types, but
it never worked as intended due to the bug in the shell code.  Also,
the max value for any 64-bit type other than "long long" on platforms
with 32-bit "long" would be incorrect if the bug was fixed.

So instead of fixing the bug in the shell code, always use the "int"
constant for 32-bit types, and "long long" constant for 64-bit types.
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: fixed autotest cleanup commands.</title>
<updated>2013-07-31T14:16:40+00:00</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@nginx.com</email>
</author>
<published>2013-07-31T14:16:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=ce36edfdd9f07ad58ec29d47727e5c74d5dee9e4'/>
<id>ce36edfdd9f07ad58ec29d47727e5c74d5dee9e4</id>
<content type='text'>
Previously, if configured with --with-cc="clang -g", the autotest.dSYM
directories were left unremoved.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, if configured with --with-cc="clang -g", the autotest.dSYM
directories were left unremoved.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed more gcc46 warnings in configure tests.</title>
<updated>2012-03-27T16:44:52+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-03-27T16:44:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=a3bdd737e5c5feb3ef7b341fd9f84c5d83d3340b'/>
<id>a3bdd737e5c5feb3ef7b341fd9f84c5d83d3340b</id>
<content type='text'>
Steps to reproduce:

./configure --with-cc="gcc46" --with-cc-opt="-Wall -Werror -O2"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Steps to reproduce:

./configure --with-cc="gcc46" --with-cc-opt="-Wall -Werror -O2"
</pre>
</div>
</content>
</entry>
<entry>
<title>Some older OSes (notably FreeBSD 4.x) did not have %zu</title>
<updated>2012-03-16T07:33:55+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-03-16T07:33:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=c2afb66e8885d9740ae5b7ade421d1522219551b'/>
<id>c2afb66e8885d9740ae5b7ade421d1522219551b</id>
<content type='text'>
format specifier, so revert to using %d.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
format specifier, so revert to using %d.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed compilation warnings in configuration C tests.</title>
<updated>2012-03-15T20:39:38+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-03-15T20:39:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=4489fa8893518cc63ddcff221d12572f05ed7b1c'/>
<id>4489fa8893518cc63ddcff221d12572f05ed7b1c</id>
<content type='text'>
Based on a patch by Piotr Sikora.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on a patch by Piotr Sikora.
</pre>
</div>
</content>
</entry>
</feed>
