<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nginx.git/auto/lib, branch release-1.3.14</title>
<subtitle>nginx</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/'/>
<entry>
<title>Configure: rebuild perl module nginx.so if headers are changed.</title>
<updated>2013-02-15T16:50:22+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-02-15T16:50:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=7022bc28ead828afd8ee5109e7d96f3bff45c7e5'/>
<id>7022bc28ead828afd8ee5109e7d96f3bff45c7e5</id>
<content type='text'>
Note: the "-p" argument of cp(1) dropped intentionally, to force nginx.so
rebuild.  It is considered too boring to properly list all dependencies
in Makefile.PL.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note: the "-p" argument of cp(1) dropped intentionally, to force nginx.so
rebuild.  It is considered too boring to properly list all dependencies
in Makefile.PL.
</pre>
</div>
</content>
</entry>
<entry>
<title>GeoIP: IPv6 support.</title>
<updated>2013-01-24T16:15:51+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2013-01-24T16:15:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=db5e48d9b8c49088f278d8a2e6e3e1cf82d441f2'/>
<id>db5e48d9b8c49088f278d8a2e6e3e1cf82d441f2</id>
<content type='text'>
When using IPv6 databases, IPv4 addresses are looked up as IPv4-mapped
IPv6 addresses.

Mostly based on a patch by Gregor Kališnik (ticket #250).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When using IPv6 databases, IPv4 addresses are looked up as IPv4-mapped
IPv6 addresses.

Mostly based on a patch by Gregor Kališnik (ticket #250).
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: fixed GeoIP library detection.</title>
<updated>2013-01-24T16:15:07+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2013-01-24T16:15:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=6aa684c3c31180752cd7ccac2e73261799a3445f'/>
<id>6aa684c3c31180752cd7ccac2e73261799a3445f</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 style of include directories.</title>
<updated>2013-01-24T16:14:12+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2013-01-24T16:14:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=9e334857a1709b5c5d4e587d042f6da673f7041e'/>
<id>9e334857a1709b5c5d4e587d042f6da673f7041e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: added the NGX_ZLIB define.</title>
<updated>2012-12-23T16:04:14+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2012-12-23T16:04:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=e90df45519dd259c263603f48fd6307760a9d7b9'/>
<id>e90df45519dd259c263603f48fd6307760a9d7b9</id>
<content type='text'>
This was introduced for conditional compilation of the code that requires
the zlib library.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was introduced for conditional compilation of the code that requires
the zlib library.
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: better check for PCRE JIT.</title>
<updated>2012-12-12T13:50:07+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-12-12T13:50:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=8ae9e7903fb26771068896d9b301f275e50053b9'/>
<id>8ae9e7903fb26771068896d9b301f275e50053b9</id>
<content type='text'>
On Mac OS X system toolchain by default prefers include files
from /usr/local/include, but libraries from /usr/lib.  This might result in
various problems, in particular the one outlined below.

If the PCRE library is installed into /usr/local/, this results in pcre.h
being used from /usr/local/include (with PCRE_CONFIG_JIT defined), but
libpcre from /usr/lib (as shipped with the OS, without pcre_free_study()
symbol).  As a result build fails as we use pcre_free_study() function
if we try to compile with PCRE JIT support.

Obvious workaround is to the root cause is to ask compiler to prefer
library from /usr/local/lib via ./configure --with-ld-opt="-L/usr/local/lib".
On the other hand, in any case it would be good to check if the function
we are going to use is available, hence the change.

See thread here for details:
http://mailman.nginx.org/pipermail/nginx-devel/2012-December/003074.html

Prodded by Piotr Sikora.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Mac OS X system toolchain by default prefers include files
from /usr/local/include, but libraries from /usr/lib.  This might result in
various problems, in particular the one outlined below.

If the PCRE library is installed into /usr/local/, this results in pcre.h
being used from /usr/local/include (with PCRE_CONFIG_JIT defined), but
libpcre from /usr/lib (as shipped with the OS, without pcre_free_study()
symbol).  As a result build fails as we use pcre_free_study() function
if we try to compile with PCRE JIT support.

Obvious workaround is to the root cause is to ask compiler to prefer
library from /usr/local/lib via ./configure --with-ld-opt="-L/usr/local/lib".
On the other hand, in any case it would be good to check if the function
we are going to use is available, hence the change.

See thread here for details:
http://mailman.nginx.org/pipermail/nginx-devel/2012-December/003074.html

Prodded by Piotr Sikora.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed build with embedded perl in certain setups (ticket #48).</title>
<updated>2012-12-03T16:00:26+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@nginx.com</email>
</author>
<published>2012-12-03T16:00:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=760c55a702886826813010a2f0b662b87c2fbee0'/>
<id>760c55a702886826813010a2f0b662b87c2fbee0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: additional test for ExtUtils::Embed perl module presence.</title>
<updated>2012-09-27T15:01:57+00:00</updated>
<author>
<name>Andrey Belov</name>
<email>defan@nginx.com</email>
</author>
<published>2012-09-27T15:01:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=181d58f9c9e6b8c2d1642eab35696e62438b5ee0'/>
<id>181d58f9c9e6b8c2d1642eab35696e62438b5ee0</id>
<content type='text'>
Now perl configure will correctly fail if ExtUtils::Embed perl module
is not present in the system (found on Amazon Linux AMI, as of
release 2012.03).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now perl configure will correctly fail if ExtUtils::Embed perl module
is not present in the system (found on Amazon Linux AMI, as of
release 2012.03).
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: fixed make macros to use parentheses instead of braces.</title>
<updated>2012-09-11T12:43:59+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-11T12:43:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=27b9435343347064da0dcd5f99fe42e471452e52'/>
<id>27b9435343347064da0dcd5f99fe42e471452e52</id>
<content type='text'>
Parentheses are more portable, in particular they are understood by nmake
while braces aren't.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Parentheses are more portable, in particular they are understood by nmake
while braces aren't.
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure: provide inflate() when building zlib on win32.</title>
<updated>2012-09-11T12:35:30+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2012-09-11T12:35:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=8522a2a707828e0739e4b3f4e00d3752e0472332'/>
<id>8522a2a707828e0739e4b3f4e00d3752e0472332</id>
<content type='text'>
It is now needed for gunzip filter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is now needed for gunzip filter.
</pre>
</div>
</content>
</entry>
</feed>
