summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-07-20 12:02:29 +0100
committerMans Rullgard <mans@mansr.com>2012-07-21 16:49:30 +0100
commitcd52ec95bb2bf4c5dd9787451800e5dbe0a4b949 (patch)
treebf3b5923b66d97155fba9d57ad62d4d0f2e1da0c /configure
parent07e3f9af9fc0d21682ab248c3ece99228d57b09f (diff)
configure: remove filter_cppflags
This is not used and the current design would not work properly if mixing tools needing different filters. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure b/configure
index 9e65bc4645..5e0865568c 100755
--- a/configure
+++ b/configure
@@ -585,7 +585,7 @@ prepend(){
}
add_cppflags(){
- append CPPFLAGS $($filter_cppflags "$@")
+ append CPPFLAGS "$@"
}
add_cflags(){
@@ -676,7 +676,6 @@ check_code(){
check_cppflags(){
log check_cppflags "$@"
- set -- $($filter_cppflags "$@")
check_cc "$@" <<EOF && append CPPFLAGS "$@"
int x;
EOF
@@ -757,7 +756,7 @@ check_cpp_condition(){
header=$1
condition=$2
shift 2
- check_cpp $($filter_cppflags "$@") <<EOF
+ check_cpp "$@" <<EOF
#include <$header>
#if !($condition)
#error "unsatisfied condition: $condition"
@@ -1948,7 +1947,6 @@ fi
filter_asflags=echo
filter_cflags=echo
-filter_cppflags=echo
if $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
cc_type=llvm_gcc