mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-12 10:20:00 -04:00
[MINOR] add support for variable size arrays in structures
Depending on the version of GCC, variable size arrays are not declared in the same manner. Let's add a check for the version and provide a macro.
This commit is contained in:
parent
2b1dccd501
commit
3ff3dc1fb1
1 changed files with 9 additions and 0 deletions
|
|
@ -22,6 +22,15 @@
|
|||
#ifndef _COMMON_COMPAT_H
|
||||
#define _COMMON_COMPAT_H
|
||||
|
||||
/*
|
||||
* Gcc before 3.0 needs [0] to declare a variable-size array
|
||||
*/
|
||||
#if __GNUC__ < 3
|
||||
#define VAR_ARRAY 0
|
||||
#else
|
||||
#define VAR_ARRAY
|
||||
#endif
|
||||
|
||||
/* This is needed on Linux for Netfilter includes */
|
||||
#include <sys/socket.h>
|
||||
#include <common/config.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue