diff options
author | Thibault DUPONCHELLE <thibault.duponchelle@gmail.com> | 2020-06-12 14:19:52 +0200 |
---|---|---|
committer | ℕicolas ℝ <nicolas@atoomic.org> | 2020-09-29 10:11:41 -0600 |
commit | 6b6e83fce2074294ac11d547c8a75bc106bebab9 (patch) | |
tree | 5e7ff6198fa105ccd4053a6b692d1e4b46f4db3a /ext/Errno | |
parent | 941f2f38259a2fa17ca703554d5158c5435d7fc5 (diff) | |
download | perl-6b6e83fce2074294ac11d547c8a75bc106bebab9.tar.gz |
Fix build on Haiku beta, set correct Haiku usrinc and locinc, add -fno-stack-protector to hints for amigaos.sh
and haiku.sh (and disable accordingly -fstack-protector* in Configure)
Diffstat (limited to 'ext/Errno')
-rw-r--r-- | ext/Errno/Errno_pm.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL index 762f3820a5..1fddb94be9 100644 --- a/ext/Errno/Errno_pm.PL +++ b/ext/Errno/Errno_pm.PL @@ -147,7 +147,7 @@ sub get_files { $file{$linux_errno_h} = 1; } elsif ($^O eq 'haiku') { # hidden in a special place - $file{'/boot/develop/headers/posix/errno.h'} = 1; + $file{'/boot/system/develop/headers/posix/errno.h'} = 1; } elsif ($^O eq 'vos') { # avoid problem where cpp returns non-POSIX pathnames |