<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nginx.git, branch release-1.15.11</title>
<subtitle>nginx</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/'/>
<entry>
<title>nginx-1.15.11-RELEASE</title>
<updated>2019-04-09T13:00:30+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2019-04-09T13:00:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=9cbe05233918330212cbe4509e143de2197dbbb0'/>
<id>9cbe05233918330212cbe4509e143de2197dbbb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: avoid using CFLAGS, just add define instead.</title>
<updated>2019-04-04T19:56:41+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2019-04-04T19:56:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=09752fce1f04f95c05ac9cb275f91ee9ba72d564'/>
<id>09752fce1f04f95c05ac9cb275f91ee9ba72d564</id>
<content type='text'>
With CFLAGS set as in 7da71a7b141a, OpenSSL compilation drops various
non-important compiler options.  To avoid this, a define is added
instead - OpenSSL is smart enough to recognize -D... in Configure
arguments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With CFLAGS set as in 7da71a7b141a, OpenSSL compilation drops various
non-important compiler options.  To avoid this, a define is added
instead - OpenSSL is smart enough to recognize -D... in Configure
arguments.
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: defined pdb path.</title>
<updated>2019-04-04T16:30:47+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2019-04-04T16:30:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=df8cb313697a9c2574db30be2e494656265c1f59'/>
<id>df8cb313697a9c2574db30be2e494656265c1f59</id>
<content type='text'>
By default, MSVC uses vc&lt;version&gt;.pdb in the current directory.
With the "-Fd" switch it is directed to be in the objs directory instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By default, MSVC uses vc&lt;version&gt;.pdb in the current directory.
With the "-Fd" switch it is directed to be in the objs directory instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: preserving binary compatibility with Windows XP - Vista.</title>
<updated>2019-04-04T13:26:56+00:00</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@nginx.com</email>
</author>
<published>2019-04-04T13:26:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=ce912de835153ce465b4a192e291ef0b96806baa'/>
<id>ce912de835153ce465b4a192e291ef0b96806baa</id>
<content type='text'>
OpenSSL 1.1.0 and above uses BCrypt if available (Windows 7 or higher).
This results in an unusable binary on older Windows versions, when building
with newer Windows SDK (such as 7.0A).  Using CFLAGS to define _WIN32_WINNT
allows to set a desired ABI and make sure the binary works with Windows XP.

To not mix with other potential CFLAGS uses, it is set in GNUmakefile.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
OpenSSL 1.1.0 and above uses BCrypt if available (Windows 7 or higher).
This results in an unusable binary on older Windows versions, when building
with newer Windows SDK (such as 7.0A).  Using CFLAGS to define _WIN32_WINNT
allows to set a desired ABI and make sure the binary works with Windows XP.

To not mix with other potential CFLAGS uses, it is set in GNUmakefile.
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: skip building OpenSSL tests to conserve time and space.</title>
<updated>2019-04-04T13:22:03+00:00</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@nginx.com</email>
</author>
<published>2019-04-04T13:22:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=7c7d32772d3e83868955ce7fab197ab52ff90bcd'/>
<id>7c7d32772d3e83868955ce7fab197ab52ff90bcd</id>
<content type='text'>
When building OpenSSL 1.1.1b, as used for win32 builds, with tests
it takes about twice as long and near ~1GB of additional disk space.
Using "no-tests" OpenSSL configuration option allows to skip them.
Since such an option is supported since OpenSSL 1.1.1 only, it is
residing here and not in configure.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When building OpenSSL 1.1.1b, as used for win32 builds, with tests
it takes about twice as long and near ~1GB of additional disk space.
Using "no-tests" OpenSSL configuration option allows to skip them.
Since such an option is supported since OpenSSL 1.1.1 only, it is
residing here and not in configure.
</pre>
</div>
</content>
</entry>
<entry>
<title>OCSP stapling: open ssl_stapling_file in binary-mode.</title>
<updated>2019-04-03T12:35:39+00:00</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@nginx.com</email>
</author>
<published>2019-04-03T12:35:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=db5c30728004045d0830922dd8ffeec030a6d726'/>
<id>db5c30728004045d0830922dd8ffeec030a6d726</id>
<content type='text'>
OCSP response uses the DER format and as such needs to be opened in binary-mode.
This only has any effect under Win32.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
OCSP response uses the DER format and as such needs to be opened in binary-mode.
This only has any effect under Win32.
</pre>
</div>
</content>
</entry>
<entry>
<title>SSL: missing free calls in $ssl_client_s_dn and $ssl_client_i_dn.</title>
<updated>2019-03-26T06:33:57+00:00</updated>
<author>
<name>Nikolay Morozov</name>
<email>n.morozov@securitycode.ru</email>
</author>
<published>2019-03-26T06:33:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=52d9da8790a272a43ac1907c8ba55063bd9a38fe'/>
<id>52d9da8790a272a43ac1907c8ba55063bd9a38fe</id>
<content type='text'>
If X509_get_issuer_name() or X509_get_subject_name() returned NULL,
this could lead to a certificate reference leak.  It cannot happen
in practice though, since each function returns an internal pointer
to a mandatory subfield of the certificate successfully decoded by
d2i_X509() during certificate message processing (closes #1751).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If X509_get_issuer_name() or X509_get_subject_name() returned NULL,
this could lead to a certificate reference leak.  It cannot happen
in practice though, since each function returns an internal pointer
to a mandatory subfield of the certificate successfully decoded by
d2i_X509() during certificate message processing (closes #1751).
</pre>
</div>
</content>
</entry>
<entry>
<title>Version bump.</title>
<updated>2019-03-26T15:25:08+00:00</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@nginx.com</email>
</author>
<published>2019-03-26T15:25:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=1c906828aee64d8ac7eb4df57f9134e27e709a3d'/>
<id>1c906828aee64d8ac7eb4df57f9134e27e709a3d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>release-1.15.10 tag</title>
<updated>2019-03-26T14:06:55+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2019-03-26T14:06:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=71082ed43abed7ba3a06a8f922cdb34152c822fd'/>
<id>71082ed43abed7ba3a06a8f922cdb34152c822fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nginx-1.15.10-RELEASE</title>
<updated>2019-03-26T14:06:54+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2019-03-26T14:06:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=6c5955f4b8ff74c419cbc3c93a5fa5916f31a8f3'/>
<id>6c5955f4b8ff74c419cbc3c93a5fa5916f31a8f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
