From: Christopher Faulet Date: Thu, 3 Jul 2025 14:30:14 +0000 (+0200) Subject: BUILD: cfgparse-tcp: Add _GNU_SOURCE for TCP_MD5SIG_MAXKEYLEN X-Git-Tag: v3.3-dev3~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=45cb2320626c18cd45c4e1e1cb4dc150a9a8e876;p=thirdparty%2Fhaproxy.git BUILD: cfgparse-tcp: Add _GNU_SOURCE for TCP_MD5SIG_MAXKEYLEN It is required for the musl librairy to be sure TCP_MD5SIG_MAXKEYLEN is defined and avoid build errors. --- diff --git a/src/cfgparse-tcp.c b/src/cfgparse-tcp.c index 0265e7d19..40419cc51 100644 --- a/src/cfgparse-tcp.c +++ b/src/cfgparse-tcp.c @@ -10,6 +10,7 @@ * */ +#define _GNU_SOURCE // for TCP_MD5SIG_MAXKEYLEN #include #include #include