* [Buildroot] [PATCH 1/1] package/apache: add host-pkgconf dependency
@ 2023-11-03 17:47 Fabrice Fontaine
2023-11-03 19:54 ` Thomas Petazzoni via buildroot
2023-11-08 16:27 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2023-11-03 17:47 UTC (permalink / raw)
To: buildroot; +Cc: Bernd Kuhls, Fabrice Fontaine
apache uses pkgconfig to find dependencies such as lua, nhgttp2, openssl
and systemd.
For openssl, pkgconfig is used since version 2.1.1 and
https://github.com/apache/httpd/commit/0d4387dedc4ad83460bf52fc326c475c64133634
resulting in the following build failure since at least bump to version
2.4.54 in commit 78e5a9c40e0754bbe840ef7b8da85efc28eb8b48:
ac_cv_path_PKGCONFIG=/usr/bin/pkg-config
[...]
configure:28669: checking for SSL_CTX_new
configure:28669: /home/buildroot/autobuild/instance-1/output-1/host/bin/armeb-buildroot-linux-uclibcgnueabi-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -L/home/buildroot/autobuild/instance-1/output-1/host/armeb-buildroot-linux-uclibcgnueabi/sysroot/usr/bin/../../../../armeb-buildroot-linux-uclibcgnueabi/sysroot/usr/lib -L/usr/lib conftest.c -lssl -lcrypto -lpthread >&5
armeb-buildroot-linux-uclibcgnueabi-gcc: ERROR: unsafe header/library path used in cross-compilation: '-L/usr/lib'
Fixes:
- http://autobuild.buildroot.org/results/d85c86ee1070582014c7b29b39f9a9f356988220
- http://autobuild.buildroot.org/results/55d6bad8572138e200730d3a9f2dd1b9048fd95d
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/apache/apache.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/apache/apache.mk b/package/apache/apache.mk
index cac62134ed..3efa6b0ac1 100644
--- a/package/apache/apache.mk
+++ b/package/apache/apache.mk
@@ -17,7 +17,7 @@ APACHE_INSTALL_STAGING = YES
# We have a patch touching configure.in and Makefile.in,
# so we need to autoreconf:
APACHE_AUTORECONF = YES
-APACHE_DEPENDENCIES = apr apr-util pcre2
+APACHE_DEPENDENCIES = host-pkgconf apr apr-util pcre2
APACHE_CONF_ENV= \
ap_cv_void_ptr_lt_long=no \
--
2.42.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/apache: add host-pkgconf dependency
2023-11-03 17:47 [Buildroot] [PATCH 1/1] package/apache: add host-pkgconf dependency Fabrice Fontaine
@ 2023-11-03 19:54 ` Thomas Petazzoni via buildroot
2023-11-08 16:27 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-11-03 19:54 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Bernd Kuhls, buildroot
On Fri, 3 Nov 2023 18:47:55 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> apache uses pkgconfig to find dependencies such as lua, nhgttp2, openssl
> and systemd.
> For openssl, pkgconfig is used since version 2.1.1 and
> https://github.com/apache/httpd/commit/0d4387dedc4ad83460bf52fc326c475c64133634
> resulting in the following build failure since at least bump to version
> 2.4.54 in commit 78e5a9c40e0754bbe840ef7b8da85efc28eb8b48:
>
> ac_cv_path_PKGCONFIG=/usr/bin/pkg-config
> [...]
> configure:28669: checking for SSL_CTX_new
> configure:28669: /home/buildroot/autobuild/instance-1/output-1/host/bin/armeb-buildroot-linux-uclibcgnueabi-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -L/home/buildroot/autobuild/instance-1/output-1/host/armeb-buildroot-linux-uclibcgnueabi/sysroot/usr/bin/../../../../armeb-buildroot-linux-uclibcgnueabi/sysroot/usr/lib -L/usr/lib conftest.c -lssl -lcrypto -lpthread >&5
> armeb-buildroot-linux-uclibcgnueabi-gcc: ERROR: unsafe header/library path used in cross-compilation: '-L/usr/lib'
>
> Fixes:
> - http://autobuild.buildroot.org/results/d85c86ee1070582014c7b29b39f9a9f356988220
> - http://autobuild.buildroot.org/results/55d6bad8572138e200730d3a9f2dd1b9048fd95d
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/apache/apache.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/apache: add host-pkgconf dependency
2023-11-03 17:47 [Buildroot] [PATCH 1/1] package/apache: add host-pkgconf dependency Fabrice Fontaine
2023-11-03 19:54 ` Thomas Petazzoni via buildroot
@ 2023-11-08 16:27 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-11-08 16:27 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Bernd Kuhls, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> apache uses pkgconfig to find dependencies such as lua, nhgttp2, openssl
> and systemd.
> For openssl, pkgconfig is used since version 2.1.1 and
> https://github.com/apache/httpd/commit/0d4387dedc4ad83460bf52fc326c475c64133634
> resulting in the following build failure since at least bump to version
> 2.4.54 in commit 78e5a9c40e0754bbe840ef7b8da85efc28eb8b48:
> ac_cv_path_PKGCONFIG=/usr/bin/pkg-config
> [...]
> configure:28669: checking for SSL_CTX_new
> configure:28669:
> /home/buildroot/autobuild/instance-1/output-1/host/bin/armeb-buildroot-linux-uclibcgnueabi-gcc
> -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
> -D_FILE_OFFSET_BITS=64 -O3 -g0 -D_LARGEFILE_SOURCE
> -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
> -L/home/buildroot/autobuild/instance-1/output-1/host/armeb-buildroot-linux-uclibcgnueabi/sysroot/usr/bin/../../../../armeb-buildroot-linux-uclibcgnueabi/sysroot/usr/lib
> -L/usr/lib conftest.c -lssl -lcrypto -lpthread >&5
> armeb-buildroot-linux-uclibcgnueabi-gcc: ERROR: unsafe header/library path used in cross-compilation: '-L/usr/lib'
> Fixes:
> - http://autobuild.buildroot.org/results/d85c86ee1070582014c7b29b39f9a9f356988220
> - http://autobuild.buildroot.org/results/55d6bad8572138e200730d3a9f2dd1b9048fd95d
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2023.02.x and 2023.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-11-08 16:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-03 17:47 [Buildroot] [PATCH 1/1] package/apache: add host-pkgconf dependency Fabrice Fontaine
2023-11-03 19:54 ` Thomas Petazzoni via buildroot
2023-11-08 16:27 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox