mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 02:49:40 +01:00
After too many years, autoconf has made a new release. On the whole it is compatible with previous releases, but some macros are more specific about what they expose so minor tweaks to configure.ac may be required. autoconf also now invokes intltoolize, gtkdocize, and copies config.sub/guess, so there is less work for autotools.bbclass to do. - AC_HEADER_MAJOR-port-to-glibc-2.25.patch - add_musl_config.patch - autoconf-replace-w-option-in-shebangs-with-modern-use-warnings.patch - autoreconf-gnuconfigize.patch - check-automake-cross-warning.patch - config_site.patch - fix_path_xtra.patch - performance.patch Drop a number of patches which have been integrated upstream. - man-host-perl.patch Don't use the target perl path when building documentation at build time: - no-man.patch Don't build documentation in native builds to avoid further build dependencies. (From OE-Core rev: f5dd2e0acbb0aa4079c51aaeab8c26e743a4c714) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From a08643ac3fef884900d6cfa161f0acec3ef104d1 Mon Sep 17 00:00:00 2001
|
|
From: Ross Burton <ross.burton@intel.com>
|
|
Date: Thu, 12 Mar 2020 17:25:37 +0000
|
|
Subject: [PATCH 1/7] remove-usr-local-lib-from-m4.patch
|
|
|
|
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
|
---
|
|
lib/autoconf/functions.m4 | 9 ---------
|
|
1 file changed, 9 deletions(-)
|
|
|
|
diff --git a/lib/autoconf/functions.m4 b/lib/autoconf/functions.m4
|
|
index 12f60b99..07da7941 100644
|
|
--- a/lib/autoconf/functions.m4
|
|
+++ b/lib/autoconf/functions.m4
|
|
@@ -801,15 +801,6 @@ if test $ac_have_func = no; then
|
|
[LIBS="-lutil $LIBS" ac_have_func=yes ac_cv_func_getloadavg_setgid=yes])
|
|
fi
|
|
|
|
-if test $ac_have_func = no; then
|
|
- # There is a commonly available library for RS/6000 AIX.
|
|
- # Since it is not a standard part of AIX, it might be installed locally.
|
|
- ac_getloadavg_LIBS=$LIBS
|
|
- LIBS="-L/usr/local/lib $LIBS"
|
|
- AC_CHECK_LIB(getloadavg, getloadavg,
|
|
- [LIBS="-lgetloadavg $LIBS"], [LIBS=$ac_getloadavg_LIBS])
|
|
-fi
|
|
-
|
|
# Make sure it is really in the library, if we think we found it,
|
|
# otherwise set up the replacement function.
|
|
AC_CHECK_FUNCS(getloadavg, [],
|
|
--
|
|
2.25.1
|
|
|