From: Miroslav Zagorac Date: Tue, 11 May 2021 17:21:54 +0000 (+0200) Subject: BUILD/MINOR: opentracing: fixed compilation with filter enabled X-Git-Tag: v2.4.0~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2acd0b3a793f84ec67852bcb54b7d41ce3d04f3;p=thirdparty%2Fhaproxy.git BUILD/MINOR: opentracing: fixed compilation with filter enabled The inclusion of header files proxy.h and tools.h was added to the addons/ot/include/include.h file. Without this HAProxy cannot be compiled if the OpenTracing filter is to be used. --- diff --git a/addons/ot/include/include.h b/addons/ot/include/include.h index 3c0d110945..f185a53b21 100644 --- a/addons/ot/include/include.h +++ b/addons/ot/include/include.h @@ -31,8 +31,10 @@ #include #include #include +#include #include #include +#include #include #include "config.h"