./configure通过,开始make编译后
它报错称:
- 代碼: 選擇全部
ezstream.c:576: error: `SHOUT_FORMAT_OGG' undeclared (first use in this function)
ezstream.c:576: error: (Each undeclared identifier is reported only once
ezstream.c:576: error: for each function it appears in.)
make[2]: *** [ezstream.o] Error 1
make[2]: Leaving directory `/tmp/ezstream-0.2.0/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/ezstream-0.2.0'
make: *** [all] Error 2
而ezstream.c中的这一段是这样的:
- 代碼: 選擇全部
if (!strcmp(pezConfig->format, VORBIS_FORMAT)) {
if (shout_set_format(shout, SHOUT_FORMAT_OGG) != SHOUTERR_SUCCESS) {
printf("Error setting user: %s\n", shout_get_error(shout));
return 1;
}
}
请问这个错是什么意思?应该如何解决?或是应该参照哪些文档?
谢谢
debian sarge
icewm
libshout3-dev的版本为2.0-9
再次谢谢!