diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-07-27 20:47:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-07-30 07:54:44 +0100 |
commit | f35b5f5d20f99dca06f579bccaceb5d7c2f9cf3f (patch) | |
tree | c5ebd71d03a6d2a26ea16ce9eb2f7a4b6858149e /meta/recipes-extended/parted | |
parent | 231b7099e5979ac31b8c178de4e68f7a7269b404 (diff) | |
download | poky-f35b5f5d20f99dca06f579bccaceb5d7c2f9cf3f.tar.gz |
autoconf: Upgrade to 2.72c
2.72c is a prerelease version of autoconf 2.73. It contains largefile and y2038 64 bit
time_t improvements for 32 bit architectures.
Rather than work on the older codebase, this brings us to work with the recent
autoconf upstream with the 64 bit changes. It is unclear when upstream will release
2.73 but it is easier for us to be aligned now we've done the bulk of the work needed
to update.
Upstream added several patches which fixed several common failures OE builds ran
into (backported in the next commit). In general testing has otherwise been good for us.
There is an unfortunate gnulib largefile.m4 bug. This change patches various software
to workaround it, next time they update new versions of the gnulib code will be pulled
in which address the issue with the official fix.
There are also a couple of ordering related fixes for apr and libarchive.
(From OE-Core rev: bb74a03e927b4867d885ad3539b097f0e7ed108c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/parted')
-rw-r--r-- | meta/recipes-extended/parted/files/autoconf-2.73.patch | 22 | ||||
-rw-r--r-- | meta/recipes-extended/parted/parted_3.6.bb | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-extended/parted/files/autoconf-2.73.patch b/meta/recipes-extended/parted/files/autoconf-2.73.patch new file mode 100644 index 0000000000..63dea88bfc --- /dev/null +++ b/meta/recipes-extended/parted/files/autoconf-2.73.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | The gnulib largefile macro needs updating to work with autoconf 2.73. Rather | ||
2 | than the full code: | ||
3 | |||
4 | https://git.savannah.gnu.org/cgit/gnulib.git/commit/m4/largefile.m4?id=f91f633858cf132e50924224c50d6264a92caabb | ||
5 | |||
6 | Just tweak the exiting code to work with 2.73. The next parted upgrade should | ||
7 | update to new gnulib | ||
8 | |||
9 | Upstream-Status: Inappropriate | ||
10 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
11 | |||
12 | --- a/m4/largefile.m4 | ||
13 | +++ b/m4/largefile.m4 | ||
14 | @@ -27,7 +27,7 @@ AC_DEFUN([gl_SET_LARGEFILE_SOURCE], | ||
15 | # Work around a problem in autoconf <= 2.69: | ||
16 | # AC_SYS_LARGEFILE does not configure for large inodes on Mac OS X 10.5, | ||
17 | # or configures them incorrectly in some cases. | ||
18 | -m4_version_prereq([2.70], [], [ | ||
19 | +m4_version_prereq([2.73], [], [ | ||
20 | |||
21 | # _AC_SYS_LARGEFILE_TEST_INCLUDES | ||
22 | # ------------------------------- | ||
diff --git a/meta/recipes-extended/parted/parted_3.6.bb b/meta/recipes-extended/parted/parted_3.6.bb index a755e1c148..a537ef74db 100644 --- a/meta/recipes-extended/parted/parted_3.6.bb +++ b/meta/recipes-extended/parted/parted_3.6.bb | |||
@@ -9,6 +9,7 @@ DEPENDS = "ncurses util-linux virtual/libiconv" | |||
9 | SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.xz \ | 9 | SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.xz \ |
10 | file://fix-doc-mandir.patch \ | 10 | file://fix-doc-mandir.patch \ |
11 | file://0001-fs-Add-libuuid-to-linker-flags-for-libparted-fs-resi.patch \ | 11 | file://0001-fs-Add-libuuid-to-linker-flags-for-libparted-fs-resi.patch \ |
12 | file://autoconf-2.73.patch \ | ||
12 | file://run-ptest \ | 13 | file://run-ptest \ |
13 | " | 14 | " |
14 | 15 | ||