提交 7ecc196f 编写于 作者: M martin

6775152: freetype version check program problem main arg order

Summary: Fix all compiler warnings
Reviewed-by: ohair, tbell
上级 0048288a
...@@ -1350,10 +1350,11 @@ $(ALSA_VERSION_CHECK): $(ALSA_VERSION_CHECK).c ...@@ -1350,10 +1350,11 @@ $(ALSA_VERSION_CHECK): $(ALSA_VERSION_CHECK).c
$(ALSA_VERSION_CHECK).c: $(ALSA_VERSION_CHECK).c:
@$(prep-target) @$(prep-target)
@$(ECHO) "#include <alsa/asoundlib.h>\n" \ @$(ECHO) "#include <alsa/asoundlib.h>\n" \
"int main(char** argv, int argc) {\n" \ "#include <stdio.h>\n" \
" printf(\"%s\", SND_LIB_VERSION_STR);\n" \ "int main(int argc, char** argv) {\n" \
" return 0;\n" \ " printf(\"%s\", SND_LIB_VERSION_STR);\n" \
"}\n" \ " return 0;\n" \
"}\n" \
> $@ > $@
endif endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册