Скачал я недавно себе CRBot, так как Eraser не захотел правильно работать. На офф.сайте (http://arton.cunst.net/quake/crbot/) были выложены только исходники, я их скачал, подправил в Makefile архитектуру, march вместо mcpu и falign-* вместо malign. При сборке выдает следующие ошибки:
rustam@debianpc:~/crbot$ make
gcc -march=pentiumpro -march=pentiumpro -O3 -ffast-math -funroll-loops -falign-loops=2 -falign-jumps=2 -falign-functions=2 -fexpensive-optimizations -pipe -Dstricmp=strcasecmp -fPIC -o g_items.o -c g_items.c
g_items.c:24: error: static declaration of ‘jacket_armor_index’ follows non-static declaration
g_local.h:433: note: previous declaration of ‘jacket_armor_index’ was here
g_items.c:25: error: static declaration of ‘combat_armor_index’ follows non-static declaration
g_local.h:434: note: previous declaration of ‘combat_armor_index’ was here
g_items.c:26: error: static declaration of ‘body_armor_index’ follows non-static declaration
g_local.h:435: note: previous declaration of ‘body_armor_index’ was here
g_items.c:2144: warning: initialization from incompatible pointer type
g_items.c:2166: warning: initialization from incompatible pointer type
make: *** [g_items.o] Ошибка 1
В строках 2144 и 2166 ничего похожего на указатели нет.
Заранее спасибо.