libmad: Add a patch to pass cflags to build

Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 0474e0b8705ee2048e92ed5874b83b2535dc9cd2)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Khem Raj 2023-05-16 10:33:54 -07:00 committed by Armin Kuster
parent af36e64fa8
commit 35d3bbf587
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,47 @@
From 26342d1c775205f661f5cf005b7e054a04f5d32e Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 16 May 2023 10:14:57 -0700
Subject: [PATCH] configure: Respect the cflags from environment
This is needed with OE like cross-build envs where certain important
flags maybe passed as global policy to aid cross compiling or
reproducibility etc.
Upstream-Status: Inappropriate [OE-Specific]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
configure.ac | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
--- a/configure.ac
+++ b/configure.ac
@@ -73,12 +73,9 @@ debug=""
optimize=""
profile=""
-set -- $CFLAGS
-CFLAGS=""
-
if test "$GCC" = yes
then
- CFLAGS="-Wall"
+ CFLAGS="$CFLAGS -Wall"
fi
while test $# -gt 0
@@ -115,10 +112,13 @@ do
optimize="$optimize $1"
shift
;;
- *)
+ -*)
CFLAGS="$CFLAGS $1"
shift
;;
+ *)
+ shift
+ ;;
esac
done

View File

@ -16,6 +16,7 @@ SRC_URI = "ftp://ftp.mars.org/pub/mpeg/libmad-${PV}.tar.gz \
file://fix_for_mips_with_gcc-4.5.0.patch \
file://obsolete_automake_macros.patch \
file://automake-foreign.patch \
file://0001-configure-Respect-the-cflags-from-environment.patch \
"
SRC_URI:append:toolchain-clang = " file://0004-Remove-clang-unsupported-compiler-flags.patch "