a233116
From 86d07870ff23fb3a0d13760d31ff23409ef19523 Mon Sep 17 00:00:00 2001
a233116
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
a233116
Date: Sun, 1 Mar 2015 22:46:43 -0500
a233116
Subject: [PATCH] build-sys: allow lto and FORTIFY_SOURCE with -O[sz]
a233116
a233116
https://bugs.freedesktop.org/show_bug.cgi?id=89382
a233116
(cherry picked from commit 0289f2fb2a64df53b589b771f69c43126b029590)
a233116
---
a233116
 configure.ac | 4 ++--
a233116
 1 file changed, 2 insertions(+), 2 deletions(-)
a233116
a233116
diff --git a/configure.ac b/configure.ac
a233116
index 97a29d63fd..6bc347423b 100644
a233116
--- a/configure.ac
a233116
+++ b/configure.ac
a233116
@@ -208,13 +208,13 @@ AS_CASE([$CC], [*clang*],
a233116
                -Wno-gnu-variable-sized-type-not-at-end \
a233116
         ])])
a233116
 
a233116
-AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
a233116
+AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
a233116
         [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
a233116
                -flto -ffat-lto-objects])],
a233116
         [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
a233116
 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
a233116
 
a233116
-AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
a233116
+AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
a233116
         [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
a233116
                -Wp,-D_FORTIFY_SOURCE=2])],
a233116
         [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])