summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@jsg.id.au>2014-09-06 01:44:41 +1000
committerEmil Velikov <emil.l.velikov@gmail.com>2014-09-09 20:04:45 +0100
commitc68073e65f15b0df43bec2df1d7470ed4cddd761 (patch)
tree5d22c2f8b7f868046ad828d28ae51b3381817e3b
parent49022a971390afda5ce1661c388b92ad3af6e1de (diff)
configure.ac: strip _GNU_SOURCE from llvm-config output
Mesa already defines _GNU_SOURCE for glibc based systems and defining _GNU_SOURCE will break the Mesa build on other systems such as OpenBSD. _GNU_SOURCE only seems to be included in llvm-config output when LLVM is built via autoconf and not when it is built by cmake. Cc: "10.2 10.3" <mesa-stable@lists.freedesktop.org> Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6087e054358..29cf32e021f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1660,6 +1660,7 @@ strip_unwanted_llvm_flags() {
# Use \> (marks the end of the word)
echo `$1` | sed \
-e 's/-DNDEBUG\>//g' \
+ -e 's/-D_GNU_SOURCE\>//g' \
-e 's/-pedantic\>//g' \
-e 's/-Wcovered-switch-default\>//g' \
-e 's/-O.\>//g' \