Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1 | From afef4a9391e6bb1a6c3e73d370f240577ed8b0dd Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Sun, 16 Jan 2022 11:21:54 +0800 |
| 4 | Subject: [PATCH] Fix icu config |
| 5 | |
| 6 | do not entertain cppflags from icu, this is because |
| 7 | icu-config feeds the -I path without sysroot which |
| 8 | caused native headers to be included and build is |
| 9 | corrupted in any case its just adding -I/usr/include |
| 10 | to the CCARGS which we loose nothing if its not |
| 11 | entertained. |
| 12 | |
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 14 | --- |
Patrick Williams | 520786c | 2023-06-25 16:20:36 -0500 | [diff] [blame] | 15 | Upstream-Status: Pending |
| 16 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 17 | makedefs | 1 - |
| 18 | 1 file changed, 1 deletion(-) |
| 19 | |
| 20 | diff --git a/makedefs b/makedefs |
| 21 | index 3299eba..2a76f20 100644 |
| 22 | --- a/makedefs |
| 23 | +++ b/makedefs |
| 24 | @@ -826,7 +826,6 @@ EOF |
| 25 | ${BUILD_CC-gcc} -o makedefs.test makedefs.test.c $icu_cppflags \ |
| 26 | $icu_ldflags >/dev/null 2>&1 |
| 27 | if ./makedefs.test 2>/dev/null ; then |
| 28 | - CCARGS="$CCARGS $icu_cppflags" |
| 29 | SYSLIBS="$SYSLIBS $icu_ldflags" |
| 30 | else |
| 31 | CCARGS="$CCARGS -DNO_EAI" |
| 32 | -- |
| 33 | 2.17.1 |
| 34 | |