Я установил лак в Ubuntu 14.04, используя это.
Версия Varnish:varnishd -V
varnishd (varnish-4.0.3 revision b8c4a34)
Copyright (c) 2006 Verdens Gang AS
Copyright (c) 2006-2014 Varnish Software AS
Сейчас я пытаюсь установить varnish-agent из источника, следующего за данным файлом INSTALL.rst . Я установил все зависимости, которые должны быть выполнены, но все же мои перерывы в установке при make . Я много искал, но не смог понять, почему он ломается. Ниже приведены последние несколько строк из make
modules/vstat.c:76:25: error: ‘const struct VSC_desc’ has no member named ‘ctype’
assert(!strcmp(pt->desc->ctype, "uint64_t"));
^
../include/common.h:125:6: note: in definition of macro ‘assert’
((expr) ? (void)(0) : assert_fail(#expr, __FILE__, __LINE__, __func__));
^
modules/vstat.c:76:25: error: ‘const struct VSC_desc’ has no member named ‘ctype’
assert(!strcmp(pt->desc->ctype, "uint64_t"));
^
../include/common.h:125:6: note: in definition of macro ‘assert’
((expr) ? (void)(0) : assert_fail(#expr, __FILE__, __LINE__, __func__));
^
modules/vstat.c:76:25: error: ‘const struct VSC_desc’ has no member named ‘ctype’
assert(!strcmp(pt->desc->ctype, "uint64_t"));
^
../include/common.h:125:6: note: in definition of macro ‘assert’
((expr) ? (void)(0) : assert_fail(#expr, __FILE__, __LINE__, __func__));
^
modules/vstat.c:94:52: error: ‘const struct VSC_desc’ has no member named ‘semantics’
VSB_printf(out_vsb, "\"flag\": \"%c\", ", pt->desc->semantics);
^
make[2]: *** [modules/varnish_agent-vstat.o] Error 1
make[2]: Leaving directory /home/ubuntu/vagent2/src
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory /home/ubuntu/vagent2
make: *** [all] Error 2
Пожалуйста, кто-нибудь может понять, что происходит не так.