From 4d152a6a01df17201efa457a1477a1ea0866899d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 19 Jun 2020 10:20:40 +0200 Subject: Build with the flags used to build perl itsefl This is needed in order to fix build for armv7hl on aarch64 --- Changes | 2 ++ Makefile.PL | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 3650016..0dd3c40 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +- Build with the flags used to build perl itsefl + Version 5.122 - 3 June 2020 - handle RPM version with "beta" or "rc" in it diff --git a/Makefile.PL b/Makefile.PL index 0ce1e29..7a43831 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,5 @@ use strict; +use Config; use ExtUtils::MakeMaker; use ExtUtils::PkgConfig; @@ -68,7 +69,7 @@ if (-e '/etc/mageia-release' && $cfg{modversion} =~ /4\.(11|9)\./) { if (! -e '/etc/mageia-release' && -e '/etc/redhat-release' && $cfg{modversion} =~ /4.11/) { $workaround = '-DPATCHED_RH'; } -my $ccflags = join(' ', '-Wall -Wextra -fno-strict-aliasing', $cfg{cflags}, "-DRPM_VERSON=$cfg{modversion}", $workaround); +my $ccflags = join(' ', '-Wall -Wextra -fno-strict-aliasing', $Config{ccflags}, $cfg{cflags}, "-DRPM_VERSON=$cfg{modversion}", $workaround); print "Found RPM version $cfg{modversion} (compiling with flags: $ccflags)\n"; -- cgit v1.2.1