summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autoconf/autoconf_2.72.bb
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-04-17 16:18:13 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-04-20 10:11:16 +0100
commit7bae0a5b536afd65e38741d428c2aed17760c97f (patch)
tree342dfe2d2518cd9aea94796e7e8806b4759a197d /meta/recipes-devtools/autoconf/autoconf_2.72.bb
parentfcaecb85698281f5018fe8c18ec7f1b20339bd3c (diff)
downloadpoky-7bae0a5b536afd65e38741d428c2aed17760c97f.tar.gz
autoconf: upgrade to final 2.72 release
autoconf 2.72e was the fifth release candidate build, and whilst we had good reason to use RCs during development we failed to notice that the final release was made because alpha.gnu.org _only_ contains the release candidates. There are minimal changes in the final release compared to 2.72e: 6199cff2 (tag: v2.72) Finalize NEWS for release 2.72. This is the finalisation of the release, updating documentation and version numbers. e544a323 Save/restore AC_LANG setting in AC_PROG_CC_C_O. This is a bug fix, aligning behaviour of AC_PROG_CC_C_O. 634fb3e7 Remove bashism from tests/local.at. 4fbe6436 Revert debugging change committed by mistake 8794cd1c Address “autom4te preselections” testsuite failure e5d98f4c Avoid a spurious test failure with shells that ignore write errors. 3fbfb13e Address “autoconf: forbidden tokens, basic” testsuite failure fdb58df6 testsuite: Skip tests that use aclocal or automake if they’re too old. These are fixes for the test suite. (From OE-Core rev: 11ff8dba0cee801e93cf4bdb3ccf043f4d2f751f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf_2.72.bb')
-rw-r--r--meta/recipes-devtools/autoconf/autoconf_2.72.bb83
1 files changed, 83 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf_2.72.bb b/meta/recipes-devtools/autoconf/autoconf_2.72.bb
new file mode 100644
index 0000000000..f2d2781fec
--- /dev/null
+++ b/meta/recipes-devtools/autoconf/autoconf_2.72.bb
@@ -0,0 +1,83 @@
1SUMMARY = "A GNU tool that produce shell scripts to automatically configure software"
2DESCRIPTION = "Autoconf is an extensible package of M4 macros that produce shell scripts to automatically \
3configure software source code packages. Autoconf creates a configuration script for a package from a template \
4file that lists the operating system features that the package can use, in the form of M4 macro calls."
5LICENSE = "GPL-3.0-or-later"
6HOMEPAGE = "http://www.gnu.org/software/autoconf/"
7SECTION = "devel"
8DEPENDS = "m4-native autoconf-native automake-native gnu-config-native help2man-native"
9DEPENDS:remove:class-native = "autoconf-native automake-native help2man-native"
10
11LIC_FILES_CHKSUM = "file://COPYING;md5=cc3f3a7596cb558bbd9eb7fbaa3ef16c \
12 file://COPYINGv3;md5=1ebbd3e34237af26da5dc08a4e440464"
13
14SRC_URI = " \
15 ${GNU_MIRROR}/autoconf/${BP}.tar.gz \
16 file://program_prefix.patch \
17 file://autoreconf-exclude.patch \
18 file://remove-usr-local-lib-from-m4.patch \
19 file://preferbash.patch \
20 file://autotest-automake-result-format.patch \
21 file://man-host-perl.patch \
22"
23SRC_URI:append:class-native = " file://no-man.patch"
24
25SRC_URI[sha256sum] = "afb181a76e1ee72832f6581c0eddf8df032b83e2e0239ef79ebedc4467d92d6e"
26
27RDEPENDS:${PN} = "m4 gnu-config \
28 perl \
29 perl-module-bytes \
30 perl-module-carp \
31 perl-module-constant \
32 perl-module-data-dumper \
33 perl-module-errno \
34 perl-module-exporter \
35 perl-module-file-basename \
36 perl-module-file-compare \
37 perl-module-file-copy \
38 perl-module-file-find \
39 perl-module-file-glob \
40 perl-module-file-path \
41 perl-module-file-spec \
42 perl-module-file-spec-unix \
43 perl-module-file-stat \
44 perl-module-file-temp \
45 perl-module-getopt-long \
46 perl-module-io-file \
47 perl-module-list-util \
48 perl-module-overloading \
49 perl-module-posix \
50 perl-module-scalar-util \
51 perl-module-symbol \
52 perl-module-thread-queue \
53 perl-module-threads \
54 perl-module-feature \
55 "
56RDEPENDS:${PN}:class-native = "m4-native gnu-config-native hostperl-runtime-native"
57
58inherit autotools texinfo
59
60PERL = "${USRBINPATH}/perl"
61PERL:class-native = "/usr/bin/env perl"
62PERL:class-nativesdk = "/usr/bin/env perl"
63
64CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'"
65
66EXTRA_OECONF += "ac_cv_path_M4=m4 ac_cv_prog_TEST_EMACS=no"
67
68# As autoconf installs its own config.* files, ensure that they're always up to date.
69update_gnu_config() {
70 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/build-aux
71 install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/build-aux
72}
73do_configure[prefuncs] += "update_gnu_config"
74
75do_configure:class-native() {
76 oe_runconf
77}
78
79do_install:append() {
80 rm -rf ${D}${datadir}/emacs
81}
82
83BBCLASSEXTEND = "native nativesdk"