aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
authorPer Øyvind Karlsen <peroyvind@mandriva.org>2011-05-03 17:56:16 +0000
committerPer Øyvind Karlsen <peroyvind@mandriva.org>2011-05-03 17:56:16 +0000
commite98051d8d1a751d401549180b49c0b0ebdcb02e6 (patch)
tree2cda2a56c22205310d89597244c1854252a8c17a /Makefile.PL
parent19d6ae04503e7a2df02c878544c9aa23da6e6053 (diff)
downloadperl-URPM-e98051d8d1a751d401549180b49c0b0ebdcb02e6.tar
perl-URPM-e98051d8d1a751d401549180b49c0b0ebdcb02e6.tar.gz
perl-URPM-e98051d8d1a751d401549180b49c0b0ebdcb02e6.tar.bz2
perl-URPM-e98051d8d1a751d401549180b49c0b0ebdcb02e6.tar.xz
perl-URPM-e98051d8d1a751d401549180b49c0b0ebdcb02e6.zip
start on using gnu99
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index cc74aa4..627f5e5 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -49,7 +49,7 @@ my $ldflags = `pkg-config --libs rpm liblzma`;
chomp($ldflags);
$ldflags .= " -lmagic";
my $includes = `pkg-config --cflags-only-I rpm liblzma`;
-my $ccflags = join(' ', '-Wall -Wextra -fno-strict-aliasing', `pkg-config --cflags-only-other rpm liblzma`);
+my $ccflags = join(' ', '-Wall -Wextra -fno-strict-aliasing -std=gnu99', `pkg-config --cflags-only-other rpm liblzma`);
chomp($ccflags);
print "Found RPM version $version (compiling with flags: $ccflags)\n";