aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes2
-rw-r--r--Makefile.PL3
2 files changed, 4 insertions, 1 deletions
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";