# New Ticket Created by  Matt Kraai 
# Please include the string:  [perl #49818]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=49818 >


Howdy,

Configure.pl's check for memalign hangs on QNX 6 because the call to
memalign in test_c.in never returns (or at least didn't after a few
minutes).  I ran test_c2.in by hand and verified that posix_memalign
is OK, so the attached hints file for QNX 6 enables it, which causes
the test that hangs to be skipped.

-- 
Matt
# Copyright (C) 2008, The Perl Foundation.
# $Id: $

package init::hints::nto;

use strict;
use warnings;

sub runstep {
    my ( $self, $conf ) = @_;

    $conf->data->set( memalign => 'posix_memalign' );
}

1;

# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4:

Reply via email to