mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MINOR: build: missing header
Regex header file is missing in types/action.h
Repported by Conrad Hoffmann
I cannot build the current dev's master HEAD (ec3c37d) because of this error:
> In file included from include/proto/proto_http.h:26:0,
> from src/stick_table.c:26:
> include/types/action.h:102:20: error: field ‘re’ has incomplete type
> struct my_regex re; /* used by replace-header and replace-value */
> ^
> Makefile:771: recipe for target 'src/stick_table.o' failed
> make: *** [src/stick_table.o] Error 1
The struct act_rule defined in action.h includes a full struct my_regex
without #include-ing regex.h. Both gcc 5.2.0 and clang 3.6.2 do not allow this.
This commit is contained in:
parent
ec3c37db3b
commit
007ff4ce0f
1 changed files with 2 additions and 0 deletions
|
|
@ -22,6 +22,8 @@
|
|||
#ifndef _TYPES_ACTION_H
|
||||
#define _TYPES_ACTION_H
|
||||
|
||||
#include <common/regex.h>
|
||||
|
||||
#include <types/stick_table.h>
|
||||
|
||||
enum act_from {
|
||||
|
|
|
|||
Loading…
Reference in a new issue