<feed xmlns='http://www.w3.org/2005/Atom'>
<title>unit.git/auto/sources, branch 0.2</title>
<subtitle>Universal Web Application Server</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/'/>
<entry>
<title>Improved applications versions handling.</title>
<updated>2017-10-05T13:46:18+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2017-10-05T13:46:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=096562c0b14656354fcb0eb7b7c6d524f5fb1f1d'/>
<id>096562c0b14656354fcb0eb7b7c6d524f5fb1f1d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed fibers from compilation.</title>
<updated>2017-09-22T13:42:42+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2017-09-22T13:42:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=45c1d41f34031c26344832f92837f08c0dbfba04'/>
<id>45c1d41f34031c26344832f92837f08c0dbfba04</id>
<content type='text'>
It's not used anyway, but breaks building with musl.

This closes issue #5 on GitHub.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's not used anyway, but breaks building with musl.

This closes issue #5 on GitHub.
</pre>
</div>
</content>
</entry>
<entry>
<title>Lib unit tests have been renamed to tests.</title>
<updated>2017-08-29T21:31:02+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2017-08-29T21:31:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=cdc7e4479ff5aa08df0857a13a7acd7a00b79c89'/>
<id>cdc7e4479ff5aa08df0857a13a7acd7a00b79c89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The process type enum exposed to go module.</title>
<updated>2017-08-29T21:18:00+00:00</updated>
<author>
<name>Max Romanov</name>
<email>max.romanov@nginx.com</email>
</author>
<published>2017-08-29T21:18:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=92f3b852981c739a2e6ff6d50dc646fe86031b27'/>
<id>92f3b852981c739a2e6ff6d50dc646fe86031b27</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The master process has been renamed to the main process.</title>
<updated>2017-08-28T23:59:35+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2017-08-28T23:59:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=9d487df10df5000a84c9c1a75fff0cff525d4454'/>
<id>9d487df10df5000a84c9c1a75fff0cff525d4454</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed configure option --no-threads.</title>
<updated>2017-08-24T14:43:32+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2017-08-24T14:43:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=b84aa64dcbfb92d31cef10f2f45025a67f2418e4'/>
<id>b84aa64dcbfb92d31cef10f2f45025a67f2418e4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The new module configuration interface.</title>
<updated>2017-08-17T18:47:19+00:00</updated>
<author>
<name>Igor Sysoev</name>
<email>igor@sysoev.ru</email>
</author>
<published>2017-08-17T18:47:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=949548da293fa30ef200d07c3e4ff108174404b7'/>
<id>949548da293fa30ef200d07c3e4ff108174404b7</id>
<content type='text'>
Configuration and building example:

  ./configure
  ./configure python
  ./configure php
  ./configure go
  make all

or

  ./configure
  make nginext
  ./configure python
  make python
  ./configure php
  make php
  ./configure go
  make go

Modules configuration options and building examples:

  ./configure python --module=python2 --config=python2.7-config
  make python2

  ./configure php --module=php7 --config=php7.0-config
                  --lib-path=/usr/local/php7.0
  make php7

  ./configure go --go=go1.6 --go-path=${HOME}/go1.6
  make go1.6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Configuration and building example:

  ./configure
  ./configure python
  ./configure php
  ./configure go
  make all

or

  ./configure
  make nginext
  ./configure python
  make python
  ./configure php
  make php
  ./configure go
  make go

Modules configuration options and building examples:

  ./configure python --module=python2 --config=python2.7-config
  make python2

  ./configure php --module=php7 --config=php7.0-config
                  --lib-path=/usr/local/php7.0
  make php7

  ./configure go --go=go1.6 --go-path=${HOME}/go1.6
  make go1.6
</pre>
</div>
</content>
</entry>
<entry>
<title>Port RPC interface introduced.</title>
<updated>2017-08-02T10:14:31+00:00</updated>
<author>
<name>Max Romanov</name>
<email>max.romanov@nginx.com</email>
</author>
<published>2017-08-02T10:14:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=f2e9afdf422c1771d3029416c6284a46c4039781'/>
<id>f2e9afdf422c1771d3029416c6284a46c4039781</id>
<content type='text'>
Usage:
1. Register handlers in incoming port with nxt_port_rpc_register_handler().
2. Use return value as a stream identifier for next nxt_port_socket_write().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Usage:
1. Register handlers in incoming port with nxt_port_rpc_register_handler().
2. Use return value as a stream identifier for next nxt_port_socket_write().
</pre>
</div>
</content>
</entry>
<entry>
<title>Configuration: basic validation of schema.</title>
<updated>2017-07-05T15:44:43+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2017-07-05T15:44:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=842aa9ab46ec5e065ac55b1d186ef9ea81c14af4'/>
<id>842aa9ab46ec5e065ac55b1d186ef9ea81c14af4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Configuration: reduced names of structures, functions, and macros.</title>
<updated>2017-06-28T15:56:33+00:00</updated>
<author>
<name>Valentin Bartenev</name>
<email>vbart@nginx.com</email>
</author>
<published>2017-06-28T15:56:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/unit.git/commit/?id=53074c3b2905061d3a7cf32f20d7dc481efc488a'/>
<id>53074c3b2905061d3a7cf32f20d7dc481efc488a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
