From: Thierry FOURNIER Date: Tue, 9 Jun 2015 13:49:44 +0000 (+0200) Subject: MINOR: build: fix build dependency X-Git-Tag: v1.6-dev2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9ff994461c16513fe390c4f23f59746ca036fb8;p=thirdparty%2Fhaproxy.git MINOR: build: fix build dependency fix include dependency. The header file sample.h don't need to known the content of the struct arg, so I remove the include, and replace it by a simple pointer declaration. This prevent an include dependecy issue with the next patch. --- diff --git a/include/types/sample.h b/include/types/sample.h index 2f3cfbfc5a..22dfe599db 100644 --- a/include/types/sample.h +++ b/include/types/sample.h @@ -28,9 +28,10 @@ #include #include -#include #include +struct arg; + /* input and output sample types */ enum { SMP_T_ANY = 0, /* any type */