2015-09-14 03:55:19 +08:00
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
* https://github.com/libuv/libuv
|
|
|
|
|
2015-09-17 08:26:48 +08:00
|
|
|
```
|
2015-09-14 03:55:19 +08:00
|
|
|
sh autogen.sh
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
make check
|
|
|
|
make install
|
|
|
|
```
|
|
|
|
|
|
|
|
* https://github.com/joyent/http-parser
|
|
|
|
|
2015-09-17 08:26:48 +08:00
|
|
|
```
|
2015-09-14 03:55:19 +08:00
|
|
|
make
|
|
|
|
make install -stdlib=libstdc++ -lstdc++ (OSX)
|
|
|
|
make install
|
|
|
|
```
|
|
|
|
|
2015-09-26 07:01:25 +08:00
|
|
|
* https://github.com/c9s/r3 (git submodule)
|
2015-09-17 08:26:48 +08:00
|
|
|
|
|
|
|
```
|
2015-09-21 04:21:50 +08:00
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make
|
2015-09-26 07:01:25 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
* http://pcre.org/ (version 8.35, R3 dependency)
|
|
|
|
|
|
|
|
```
|
|
|
|
./configure
|
|
|
|
make
|
2015-09-21 04:21:50 +08:00
|
|
|
sudo make install
|
2015-09-26 07:01:25 +08:00
|
|
|
|
2015-09-17 08:26:48 +08:00
|
|
|
```
|
2015-09-21 04:21:50 +08:00
|
|
|
|
|
|
|
## NOTE
|
|
|
|
r3_include.h is custom r3 header file because of compilation problem related to redefinition of bool
|