diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-11-29 13:17:31 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-12-14 09:22:40 +0100 |
commit | b6c36746cf4d7234615a50c042561bf21daa51a7 (patch) | |
tree | 907603ccbf4be7eedc9d6d790e0752c37171d613 /ext/POSIX | |
parent | 476161f6df66100c5d0786092b0320bded84031b (diff) | |
download | perl-b6c36746cf4d7234615a50c042561bf21daa51a7.tar.gz |
Remove the BeOS port.
BeOS was an operating system for personal computers developed by Be Inc,
initially for their BeBox hardware. The OS Haiku was written as an open source
replacement/continuation for BeOS, and its perl port is current and actively
maintained.
The BeOS port has not been updated since 2004.
Diffstat (limited to 'ext/POSIX')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 | ||||
-rw-r--r-- | ext/POSIX/lib/POSIX.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 6d08800264..745cc90c14 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -548,7 +548,7 @@ const struct lconv_offset lconv_integers[] = { * as expected. The better solution would be not to use the W*() macros * in the first place, though. -- Ingo Weinhold */ -#if defined(__BEOS__) || defined(__HAIKU__) +#if defined(__HAIKU__) # define WMUNGE(x) (((x) & 0xFF00) >> 8 | ((x) & 0x00FF) << 8) #else # define WMUNGE(x) (x) diff --git a/ext/POSIX/lib/POSIX.pm b/ext/POSIX/lib/POSIX.pm index 3a61b788c5..71577c61f3 100644 --- a/ext/POSIX/lib/POSIX.pm +++ b/ext/POSIX/lib/POSIX.pm @@ -4,7 +4,7 @@ use warnings; our ($AUTOLOAD, %SIGRT); -our $VERSION = '1.31'; +our $VERSION = '1.32'; require XSLoader; |