diff options
Diffstat (limited to 'etc/import/deps/http-parser/TARGETS.git2')
-rw-r--r-- | etc/import/deps/http-parser/TARGETS.git2 | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/etc/import/deps/http-parser/TARGETS.git2 b/etc/import/deps/http-parser/TARGETS.git2 index ad48f2c2..80f4ffc6 100644 --- a/etc/import/deps/http-parser/TARGETS.git2 +++ b/etc/import/deps/http-parser/TARGETS.git2 @@ -1,13 +1,22 @@ { "git2_http_parser": { "type": ["@", "rules", "CC", "library"] - , "arguments_config": ["COMPILER_FAMILY"] + , "arguments_config": ["TOOLCHAIN_CONFIG"] , "name": ["git2_http_parser"] , "pure C": ["yes"] , "srcs": ["http_parser.c"] , "hdrs": ["http_parser.h"] , "private-cflags": { "type": "case" - , "expr": {"type": "var", "name": "COMPILER_FAMILY", "default": "unknown"} + , "expr": + { "type": "lookup" + , "map": + { "type": "var" + , "name": "TOOLCHAIN_CONFIG" + , "default": {"type": "empty_map"} + } + , "key": "FAMILY" + , "default": "unknown" + } , "case": {"gnu": ["-Wimplicit-fallthrough=1"]} } } |