[SCM] libav/experimental: Allow filtering of flags passed to compiler and assembler

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:48:56 UTC 2013


The following commit has been merged in the experimental branch:
commit caf458dda4ae593b58046cc73d56a70eeab26c15
Author: Måns Rullgård <mans at mansr.com>
Date:   Sun Jul 12 22:44:05 2009 +0000

    Allow filtering of flags passed to compiler and assembler
    
    This can be used to map gcc-type flags to equivalents with other
    compilers.
    
    Originally committed as revision 19421 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/configure b/configure
index 77e148c..dbc9ceb 100755
--- a/configure
+++ b/configure
@@ -513,15 +513,15 @@ append(){
 }
 
 add_cppflags(){
-    append CPPFLAGS "$@"
+    append CPPFLAGS $($filter_cppflags "$@")
 }
 
 add_cflags(){
-    append CFLAGS "$@"
+    append CFLAGS $($filter_cflags "$@")
 }
 
 add_asflags(){
-    append ASFLAGS "$@"
+    append ASFLAGS $($filter_asflags "$@")
 }
 
 add_ldflags(){
@@ -589,14 +589,16 @@ check_ld(){
 
 check_cppflags(){
     log check_cppflags "$@"
-    check_cc "$@" <<EOF && add_cppflags "$@"
+    set -- $($filter_cppflags "$@")
+    check_cc "$@" <<EOF && append CPPFLAGS "$@"
 int x;
 EOF
 }
 
 check_cflags(){
     log check_cflags "$@"
-    check_cc "$@" <<EOF && add_cflags "$@"
+    set -- $($filter_cflags "$@")
+    check_cc "$@" <<EOF && append CFLAGS "$@"
 int x;
 EOF
 }
@@ -1507,6 +1509,10 @@ test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
 : ${ld_default:=$cc}
 set_default as dep_cc ld
 
+: ${filter_cflags:=echo}
+: ${filter_cppflags:=echo}
+: ${filter_asflags:=echo}
+
 add_cflags $extra_cflags
 add_asflags $extra_cflags
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list