File tree 2 files changed +13
-10
lines changed
2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
2
2
all : ./build server client
3
3
4
- ./build :
4
+ ./deps/http-parser :
5
+ git clone --depth 1 git://github.com/joyent/http-parser.git ./deps/http-parser
6
+
7
+ ./deps/libuv :
8
+ git clone --depth 1 git://github.com/joyent/libuv.git ./deps/libuv
9
+
10
+ ./deps/gyp :
11
+ git clone --depth 1 https://chromium.googlesource.com/external/gyp.git ./deps/gyp
12
+
13
+ ./build : ./deps/gyp ./deps/libuv ./deps/http-parser
5
14
./configure
6
15
7
16
client :
Original file line number Diff line number Diff line change @@ -9,20 +9,14 @@ Based on http://vimeo.com/24713213
9
9
10
10
This is not a real server and never will be - purely experimental.
11
11
12
- git ci -a -m "update to latest libuv + move to gyp for building"
12
+ If you are interested in more robust server on top of libuv see [ Haywire] ( https://github.com/kellabyte/Haywire ) .
13
+
14
+
13
15
## Build
14
16
15
- mkdir deps && cd deps
16
- git clone git://github.com/joyent/http-parser.git
17
- git clone git://github.com/joyent/libuv.git
18
- git clone https://chromium.googlesource.com/external/gyp.git
19
- cd ../
20
- ./configure
21
17
make
22
18
23
19
## TODO
24
20
25
21
- leverage threadpool
26
- - build using pure gyp
27
- - build as c++
28
22
- signal(SIGPIPE, SIG_IGN)
You can’t perform that action at this time.
0 commit comments