mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-13 06:28:28 +00:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From b73b802282bf95d214c86ba943c5765ba6930bc1 Mon Sep 17 00:00:00 2001
|
|
From: Jim Somerville <Jim.Somerville@windriver.com>
|
|
Date: Mon, 21 Oct 2013 12:50:44 -0400
|
|
Subject: [PATCH] Fix flawed dynamic -ldb link test in configure
|
|
|
|
The test uses dbopen, but just ignores the fact
|
|
that this function may not exist in the db version
|
|
used. This leads to the dynamic link test failing
|
|
and the configure script just making assumptions
|
|
about why and setting the need for -ldb incorrectly.
|
|
|
|
Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
|
|
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
configure.ac | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index d2f7feb..c7ae568 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -3268,6 +3268,16 @@ case "$host" in
|
|
;;
|
|
esac
|
|
|
|
+if test "x$ac_cv_have_decl_dbopen" = "xyes"; then
|
|
+ dnl 1.85
|
|
+ SQUID_CHECK_DBOPEN_NEEDS_LIBDB
|
|
+else
|
|
+ # dbopen isn't there. So instead of running a compile/link test that
|
|
+ # uses it and is thus guaranteed to fail, we just assume that we will
|
|
+ # need to link in the db library, rather than fabricate some other
|
|
+ # dynamic compile/link test.
|
|
+ ac_cv_dbopen_libdb="yes"
|
|
+fi
|
|
dnl System-specific library modifications
|
|
dnl
|
|
case "$host" in
|