diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2017-04-19 12:57:56 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2017-04-19 12:57:56 +0000 |
commit | 2db870881c9a5bbc09e6f1ac07717e034436ca09 (patch) | |
tree | 2b93c5c94375b794011553e57942d55515137b6d /net/haproxy/files/patch-Makefile | |
parent | - Fix shebangs (diff) |
Do not override CFLAGS defined in Makefile; use OPTIONS_CFLAGS to pass our
CFLAGS env variable;
Add -fwrap to CFLAGS to fix eventual haproxy spins when compiled with newer
versions of clang (FreeBSD-11 is affected). -- obtained from haproxy source tree.
Notes
Notes:
svn path=/head/; revision=438838
Diffstat (limited to 'net/haproxy/files/patch-Makefile')
-rw-r--r-- | net/haproxy/files/patch-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/haproxy/files/patch-Makefile b/net/haproxy/files/patch-Makefile new file mode 100644 index 000000000000..3c74b35769c9 --- /dev/null +++ b/net/haproxy/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2017-04-19 13:18:14.404480000 +0300 ++++ Makefile 2017-04-19 13:18:26.684393000 +0300 +@@ -128,7 +128,7 @@ DEBUG_CFLAGS = -g + #### Compiler-specific flags that may be used to disable some negative over- + # optimization or to silence some warnings. -fno-strict-aliasing is needed with + # gcc >= 4.4. +-SPEC_CFLAGS = -fno-strict-aliasing -Wdeclaration-after-statement ++SPEC_CFLAGS = -fno-strict-aliasing -Wdeclaration-after-statement -fwrapv + + #### Memory usage tuning + # If small memory footprint is required, you can reduce the buffer size. There |