From 42bbff95ed280213b96801bf35decccb6ab9cdbd Mon Sep 17 00:00:00 2001 From: Daniel Green Date: Mon, 21 Jun 2021 06:20:19 -0400 Subject: [PATCH] msinttypes no longer needed in $PREFIX\include It isn't actually being put in the include paths for NQP/Rakudo, and if you do add it, it causes problems with the libuv include. --- Configure.pl | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Configure.pl b/Configure.pl index 9ed9e837e8..908aef0df3 100755 --- a/Configure.pl +++ b/Configure.pl @@ -594,13 +594,6 @@ sub uniq { $config{dasm_flags} = ''; } - -if ($config{cc} eq 'cl') { - $config{install} .= "\t\$(MKPATH) \"\$(DESTDIR)\$(PREFIX)/include/msinttypes\"\n" - . "\t\$(CP) 3rdparty/msinttypes/*.h \"\$(DESTDIR)\$(PREFIX)/include/msinttypes\"\n"; - push @hllincludes, 'msinttypes'; -} - if ($^O eq 'aix' && $config{ptr_size} == 4) { $config{ldflags} = join(',', $config{ldflags}, '-bmaxdata:0x80000000'); }