mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
License-Update: update GPLv2 COPYING document
Some terminology and FSF address changes since the GPLv2
4c5fbc7e8d
Remove lines from patch, which modify not exist code.
Changelog:
https://github.com/squid-cache/squid/releases/tag/SQUID_7_4
Changes:
- Do not create world-readable directories
- digest_edirectory_auth: Fix LDAPS memory leaks
- snmplib: Improve handling of zero-length ASN OCTET STRINGs
- Debug tls_read_method()/tls_write_method() errors
- ICMP: Harden echo paths, fix overflows, UB, and leaks
- Set SSL_OP_LEGACY_SERVER_CONNECT when peeking at servers
- security_file_certgen: Fix OPENSSL_malloc()/free(3) mismatch
- Detect FreeBSD ports Heimdal package
- Remove SQUID_CHECK_KRB5_HEIMDAL_BROKEN_KRB5_H macro
- Remove SQUID_CHECK_KRB5_SOLARIS_BROKEN_KRB5_H macro
- ext_kerberos_ldap_group_acl: Do not prohibit all LDFLAGS
- negotiate_sspi_auth: Respond with ERR when FormatMessage() fails
- ... and some code cleanups
- ... and some CI improvements
Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From 050f8ab275a7a5f3d94045da6b15a2b63dfbeb3f Mon Sep 17 00:00:00 2001
|
|
From: Jim Somerville <Jim.Somerville@windriver.com>
|
|
Date: Tue, 14 Oct 2014 02:56:08 -0400
|
|
Subject: [PATCH] Skip AC_RUN_IFELSE tests
|
|
|
|
Upstream-Status: Inappropriate [cross compiling specific]
|
|
|
|
Such tests are not supported in a cross compile
|
|
environment. Choose sane defaults.
|
|
|
|
Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
|
|
---
|
|
acinclude/lib-checks.m4 | 8 ++++++--
|
|
2 files changed, 15 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/acinclude/lib-checks.m4 b/acinclude/lib-checks.m4
|
|
index 9793b9a..4f2dc83 100644
|
|
--- a/acinclude/lib-checks.m4
|
|
+++ b/acinclude/lib-checks.m4
|
|
@@ -207,7 +207,9 @@ AC_DEFUN([SQUID_CHECK_OPENSSL_CONST_SSL_METHOD],[
|
|
[
|
|
AC_MSG_RESULT([no])
|
|
],
|
|
- [])
|
|
+ [
|
|
+ AC_MSG_RESULT([skipped - can't test in cross-compiled env])
|
|
+ ])
|
|
|
|
SQUID_STATE_ROLLBACK(check_const_SSL_METHOD)
|
|
])
|
|
@@ -349,7 +351,9 @@ AC_DEFUN([SQUID_CHECK_OPENSSL_TXTDB],[
|
|
],[
|
|
AC_MSG_RESULT([yes])
|
|
AC_DEFINE(SQUID_USE_SSLLHASH_HACK, 1)
|
|
- ],[])
|
|
+ ],[
|
|
+ AC_MSG_RESULT([skipped - can't test in cross-compiled env])
|
|
+ ])
|
|
|
|
SQUID_STATE_ROLLBACK(check_TXTDB)
|
|
])
|