Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 32214
Status: resolved
Priority: 0/
Queue: Module-Build

People
Owner: Nobody in particular
Requestors: kraai [...] ftbfs.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.2808_01
Fixed in: (no value)



Subject: Does not know about QNX 6
When Module::Build is used on a QNX 6 system, it displays the following warning: Show quoted text
> Unknown OS type 'nto' - using default settings
The attached patch fixes this problem by treating QNX 6 systems as Unix systems, which they seem to be very like.
Subject: Module-Build
Download Module-Build
application/octet-stream 924b

Message body not shown because it is not plain text.

Subject: Re: [rt.cpan.org #32214] Does not know about QNX 6
Date: Thu, 10 Jan 2008 19:43:20 -0800
To: bug-Module-Build [...] rt.cpan.org
From: Michael G Schwern <schwern [...] pobox.com>
Matt Kraai via RT wrote: Show quoted text
> When Module::Build is used on a QNX 6 system, it displays the following > warning: >
>> Unknown OS type 'nto' - using default settings
> > The attached patch fixes this problem by treating QNX 6 systems as Unix > systems, which they seem to be very like.
Is $^O being set to nto on QNX 6? Or is this actually Neutrino? -- E: "Would you want to maintain a 5000 line Perl program?" d: "Why would you write a 5000 line program?"
From: kraai [...] ftbfs.org
On Thu Jan 10 22:49:10 2008, schwern@pobox.com wrote: Show quoted text
> Matt Kraai via RT wrote:
> > When Module::Build is used on a QNX 6 system, it displays the following > > warning: > >
> >> Unknown OS type 'nto' - using default settings
> > > > The attached patch fixes this problem by treating QNX 6 systems as Unix > > systems, which they seem to be very like.
> > Is $^O being set to nto on QNX 6? Or is this actually Neutrino?
$^O is set to "nto": Show quoted text
> $ perl > use feature 'say'; > say "$^O"; > nto
It is a Neutrino system.
Thanks, this will show up in the next release.