- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
50 lines
1.5 KiB
Diff
50 lines
1.5 KiB
Diff
From a45e086661a3eed29193546c525998d7525ef6d9 Mon Sep 17 00:00:00 2001
|
|
From: Tudor Florea <tudor.florea@enea.com>
|
|
Date: Tue, 4 Aug 2015 02:46:39 +0200
|
|
Subject: [PATCH] Remove hardcoded /usr/local includes from configure.ac
|
|
|
|
Upstream-Status: Inappropriate [config]
|
|
|
|
Signed-off-by: Yauhen Kharuzhy <yauhen.kharuzhy@promwad.com>
|
|
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
|
|
|
|
Update for 1.0.49.
|
|
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
|
|
|
|
Update for 1.0.51.
|
|
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
|
|
---
|
|
configure.ac | 16 ----------------
|
|
1 file changed, 16 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 62768c8..efaeee5 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -97,22 +97,6 @@ AX_CHECK_LINK_FLAG([-Wl,-z,relro], [LDFLAGS="$LDFLAGS -Wl,-z,relro"])
|
|
AX_CHECK_LINK_FLAG([-Wl,-z,now], [LDFLAGS="$LDFLAGS -Wl,-z,now"])
|
|
AX_CHECK_LINK_FLAG([-Wl,-z,noexecstack], [LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"])
|
|
|
|
-if test "x$cross_compiling" != "xyes"; then
|
|
- for path in \
|
|
- /usr/kerberos \
|
|
- /usr/local /opt /usr/local/opt \
|
|
- /opt/homebrew/opt/openssl@3 /usr/local/opt/openssl@3 \
|
|
- /opt/homebrew/opt/openssl@1.1 /usr/local/opt/openssl@1.1 \
|
|
- /usr/openssl /opt/openssl /usr/local/opt/openssl; do
|
|
- if test -d $path/include; then
|
|
- CPPFLAGS="$CPPFLAGS -I${path}/include"
|
|
- fi
|
|
- if test -d $path/lib; then
|
|
- LDFLAGS="$LDFLAGS -L${path}/lib"
|
|
- fi
|
|
- done
|
|
-fi
|
|
-
|
|
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
|
|
|
dnl Checks for header files
|
|
--
|
|
2.25.1
|
|
|