mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 10:59:41 +01:00
* Drop CheckLib.pm patch; no longer applies * Change to CPAN_MIRROR for SRC_URI * Drop SRC_URI[md5sum] * Drop redundant ptest-perl/run-ptest; ptest-perl inherit does this * Drop sed for Expat/Makefile; no longer shipped * Inherit pkgconfig to find expat lib * Patch Makefile.PL to not try to load host expat License-Update: Use LICENSE file; change to Artistic-2.0 https://metacpan.org/dist/XML-Parser/changes 2.47 2023-12-28 (by Todd Rinaldo) - #84 use $fh instead of $foo - #85 Fix typo in documentation - #89 Devel::CheckLib to from 0.99 -> 1.14 - Devel::CheckLibn 1.16 - #91 POD fix for verbatim text - #97 Add a LICENSE file - #94 Don't ship Expat/Makefile - Various github workflow improvements. Windows is still not working. (From OE-Core rev: 5c51810772a6611a37b2c1b0a32d9558007c4cf7) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
904 B
Diff
29 lines
904 B
Diff
From bd9b0e10843da72276982bd1394ade734fea0289 Mon Sep 17 00:00:00 2001
|
|
From: Tim Orling <tim.orling@konsulko.com>
|
|
Date: Fri, 2 Feb 2024 21:15:34 -0800
|
|
Subject: [PATCH] Makefile.PL: make check_lib cross friendly
|
|
|
|
lib => qw(expat) does not seem to respect EXPATLIBPATH and
|
|
EXPATINCPATH when we are cross-compiling.
|
|
|
|
Upstream-Status: Inappropriate [OE specific]
|
|
|
|
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
|
|
---
|
|
Makefile.PL | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.PL b/Makefile.PL
|
|
index 505d1df..19f428b 100644
|
|
--- a/Makefile.PL
|
|
+++ b/Makefile.PL
|
|
@@ -30,7 +30,7 @@ foreach (@ARGV) {
|
|
|
|
unless (
|
|
check_lib( # fill in what you prompted the user for here
|
|
- lib => [qw(expat)],
|
|
+ #lib => [qw(expat)],
|
|
header => ['expat.h'],
|
|
incpath => $expat_incpath,
|
|
( $expat_libpath ? ( libpath => $expat_libpath ) : () ),
|