diff options
| author | Peter Marko <peter.marko@siemens.com> | 2024-11-07 22:58:48 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-11-19 13:50:56 -0800 |
| commit | 928ef34eadcab1272a2bc3a694873eede05a746d (patch) | |
| tree | b12c60803c566174296059f4075fad38d61b1cc1 /meta-networking/recipes-daemons/squid/files | |
| parent | 22e83adc79080e752889f4be52b7e637f0848cbd (diff) | |
| download | meta-openembedded-928ef34eadcab1272a2bc3a694873eede05a746d.tar.gz | |
squid: upgrade 6.10 -> 6.12
License-Update: copyright year updated
Add patch to fix new build failure from release tarball.
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/squid/files')
| -rw-r--r-- | meta-networking/recipes-daemons/squid/files/0001-libltdl-remove-reference-to-nonexisting-directory.patch | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/squid/files/0001-libltdl-remove-reference-to-nonexisting-directory.patch b/meta-networking/recipes-daemons/squid/files/0001-libltdl-remove-reference-to-nonexisting-directory.patch new file mode 100644 index 0000000000..9babcfb24d --- /dev/null +++ b/meta-networking/recipes-daemons/squid/files/0001-libltdl-remove-reference-to-nonexisting-directory.patch | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | From a6638a007a42917fea4b03e5c30d9b7208c634c4 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Peter Marko <peter.marko@siemens.com> | ||
| 3 | Date: Thu, 7 Nov 2024 22:04:40 +0100 | ||
| 4 | Subject: [PATCH] libltdl: remove reference to nonexisting directory | ||
| 5 | |||
| 6 | Commit [1] removed directory libltdl/m4 from release tarball by merging | ||
| 7 | all those files into libltdl/aclocal.m4, however makefiles still | ||
| 8 | reference it causing following error in do_configure: | ||
| 9 | |||
| 10 | | autoreconf: Entering directory 'libltdl' | ||
| 11 | | autoreconf: configure.ac: not using Gettext | ||
| 12 | | autoreconf: running: aclocal --system-acdir=WORKDIR/recipe-sysroot/usr/share/aclocal/ -I WORKDIR/squid-6.12/acinclude/ -I WORKDIR/recipe-sysroot-native/usr/share/aclocal/ --force -I m4 | ||
| 13 | | aclocal: error: couldn't open directory 'm4': No such file or directory | ||
| 14 | | autoreconf: error: aclocal failed with exit status: 1 | ||
| 15 | |||
| 16 | Remove these invalid references. | ||
| 17 | |||
| 18 | [1] https://github.com/squid-cache/squid/commit/b4addc2262e5bee37543f8d1ab9dd98337bafba3 | ||
| 19 | |||
| 20 | Signed-off-by: Peter Marko <peter.marko@siemens.com> | ||
| 21 | Upstream-Status: Inappropriate [upstream ticket https://lists.squid-cache.org/pipermail/squid-users/2024-November/027244.html] | ||
| 22 | --- | ||
| 23 | libltdl/Makefile.am | 2 +- | ||
| 24 | libltdl/Makefile.in | 2 +- | ||
| 25 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
| 26 | |||
| 27 | diff --git a/libltdl/Makefile.am b/libltdl/Makefile.am | ||
| 28 | index aad98e2..8a9539b 100644 | ||
| 29 | --- a/libltdl/Makefile.am | ||
| 30 | +++ b/libltdl/Makefile.am | ||
| 31 | @@ -29,7 +29,7 @@ | ||
| 32 | ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
| 33 | ##### | ||
| 34 | |||
| 35 | -ACLOCAL_AMFLAGS = -I m4 | ||
| 36 | +ACLOCAL_AMFLAGS = | ||
| 37 | AUTOMAKE_OPTIONS = foreign | ||
| 38 | AM_CPPFLAGS = | ||
| 39 | AM_LDFLAGS = | ||
| 40 | diff --git a/libltdl/Makefile.in b/libltdl/Makefile.in | ||
| 41 | index 9929557..c77df2e 100644 | ||
| 42 | --- a/libltdl/Makefile.in | ||
| 43 | +++ b/libltdl/Makefile.in | ||
| 44 | @@ -448,7 +448,7 @@ target_alias = @target_alias@ | ||
| 45 | top_build_prefix = @top_build_prefix@ | ||
| 46 | top_builddir = @top_builddir@ | ||
| 47 | top_srcdir = @top_srcdir@ | ||
| 48 | -ACLOCAL_AMFLAGS = -I m4 | ||
| 49 | +ACLOCAL_AMFLAGS = | ||
| 50 | AUTOMAKE_OPTIONS = foreign | ||
| 51 | |||
| 52 | # -I$(srcdir) is needed for user that built libltdl with a sub-Automake | ||
| 53 | -- | ||
| 54 | 2.30.2 | ||
| 55 | |||
