HTTP parser intergation (#263)
* HTTP parser intergation * include path fixed
This commit is contained in:
parent
df76e77598
commit
e7e6df6358
3 changed files with 15 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -19,3 +19,6 @@
|
||||||
[submodule "tests/fs-test"]
|
[submodule "tests/fs-test"]
|
||||||
path = tests/fs-test
|
path = tests/fs-test
|
||||||
url = https://github.com/sheinz/fs-test
|
url = https://github.com/sheinz/fs-test
|
||||||
|
[submodule "extras/http-parser/http-parser"]
|
||||||
|
path = extras/http-parser/http-parser
|
||||||
|
url = https://github.com/nodejs/http-parser
|
||||||
|
|
11
extras/http-parser/component.mk
Normal file
11
extras/http-parser/component.mk
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Component makefile for extras/http-parser
|
||||||
|
|
||||||
|
# Include it as 'http-parser/http_parser.h'
|
||||||
|
INC_DIRS += $(http-parser_ROOT)
|
||||||
|
|
||||||
|
# args for passing into compile rule generation
|
||||||
|
http-parser_INC_DIR =
|
||||||
|
http-parser_SRC_DIR = $(http-parser_ROOT)http-parser
|
||||||
|
http-parser_SRC_FILES = $(http-parser_SRC_DIR)/http_parser.c
|
||||||
|
|
||||||
|
$(eval $(call component_compile_rules,http-parser))
|
1
extras/http-parser/http-parser
Submodule
1
extras/http-parser/http-parser
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 335850f6b868d3411968cbf5a4d59fe619dee36f
|
Loading…
Reference in a new issue