From hein at radarmet.atmos.colostate.edu Tue Nov 21 13:50:31 2006 From: hein at radarmet.atmos.colostate.edu (Paul Hein) Date: Tue, 21 Nov 2006 13:50:31 -0700 Subject: Fedora Core 6 problems with netcdf-perl-1.2.3 Message-ID: <45636697.6080701@radarmet.atmos.colostate.edu> I installed Fedora Core 6 and was able to compile netcdf-perl-1.2.3, but when I did "make test" it crashed with an error (output below). Also below the output from make test is the lines 230-231 and the coment before it from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm. This is way beyond me. Any fixes or ideas? Paul Hein *************The output from "make test"***************** make[1]: Entering directory `/root/netcdf-perl-1.2.3/src' making `test' in directory /root/netcdf-perl-1.2.3/src/perl make[2]: Entering directory `/root/netcdf-perl-1.2.3/src/perl' PERL_DL_NONLAZY=1 /usr/bin/perl "-Iblib/lib" "-Iblib/arch" test.pl Can't load 'blib/arch/auto/NetCDF/NetCDF.so' for module NetCDF: blib/arch/auto/NetCDF/NetCDF.so: cannot restore segment prot after reloc: Permission denied at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm line 230. at test.pl line 5 Compilation failed in require at test.pl line 5. BEGIN failed--compilation aborted at test.pl line 5. make[2]: *** [test_dynamic] Error 2 make[2]: Leaving directory `/root/netcdf-perl-1.2.3/src/perl' make[1]: *** [perl/test] Error 1 make[1]: Leaving directory `/root/netcdf-perl-1.2.3/src' make: *** [test] Error 2 *************End of the output from "make test"***************** *************Code from around line 230 of /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm**************** # Many dynamic extension loading problems will appear to come from # this section of code: XYZ failed at line 123 of DynaLoader.pm. # Often these errors are actually occurring in the initialisation # C code of the extension XS file. Perl reports the error as being # in this perl code simply because this was the last perl code # it executed. my $libref = dl_load_file($file, $module->dl_load_flags) or croak("Can't load '$file' for module $module: ".dl_error()); *************End of code from around line 230 of /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm**************** ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ============================================================================== From orion at cora.nwra.com Tue Nov 21 14:13:51 2006 From: orion at cora.nwra.com (Orion Poplawski) Date: Tue, 21 Nov 2006 14:13:51 -0700 Subject: Fedora Core 6 problems with netcdf-perl-1.2.3 In-Reply-To: <45636697.6080701@radarmet.atmos.colostate.edu> References: <45636697.6080701@radarmet.atmos.colostate.edu> Message-ID: <45636C0F.70904@cora.nwra.com> Paul Hein wrote: > I installed Fedora Core 6 and was able to compile netcdf-perl-1.2.3, but > when I did "make test" it crashed with an error (output below). Also > below the output from make test is the lines 230-231 and the coment > before it from > /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm. This is way > beyond me. Any fixes or ideas? > Paul Hein > *************The output from "make test"***************** > make[1]: Entering directory `/root/netcdf-perl-1.2.3/src' > > making `test' in directory /root/netcdf-perl-1.2.3/src/perl > > make[2]: Entering directory `/root/netcdf-perl-1.2.3/src/perl' > PERL_DL_NONLAZY=1 /usr/bin/perl "-Iblib/lib" "-Iblib/arch" test.pl > Can't load 'blib/arch/auto/NetCDF/NetCDF.so' for module NetCDF: > blib/arch/auto/NetCDF/NetCDF.so: cannot restore segment prot after > reloc: Permission denied at Well, this is an SELinux issue. As compiled, NetCDF.so requires extra permissions. You might try my RPMs at www.cora.nwra.com/~orion/fedora/. Soon to be in Fedora Extras... -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane orion at cora.nwra.com Boulder, CO 80301 http://www.cora.nwra.com ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ============================================================================== From hein at radarmet.atmos.colostate.edu Tue Nov 21 14:30:00 2006 From: hein at radarmet.atmos.colostate.edu (Paul Hein) Date: Tue, 21 Nov 2006 14:30:00 -0700 Subject: Fedora Core 6 problems with netcdf-perl-1.2.3 In-Reply-To: <45636C0F.70904@cora.nwra.com> References: <45636697.6080701@radarmet.atmos.colostate.edu> <45636C0F.70904@cora.nwra.com> Message-ID: <45636FD8.9000603@radarmet.atmos.colostate.edu> Many thanks, Orion! Your rpm works. Orion Poplawski wrote: > Paul Hein wrote: > >> I installed Fedora Core 6 and was able to compile netcdf-perl-1.2.3, >> but when I did "make test" it crashed with an error (output below). >> Also below the output from make test is the lines 230-231 and the >> coment before it from >> /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm. This is >> way beyond me. Any fixes or ideas? >> Paul Hein >> *************The output from "make test"***************** >> make[1]: Entering directory `/root/netcdf-perl-1.2.3/src' >> >> making `test' in directory /root/netcdf-perl-1.2.3/src/perl >> >> make[2]: Entering directory `/root/netcdf-perl-1.2.3/src/perl' >> PERL_DL_NONLAZY=1 /usr/bin/perl "-Iblib/lib" "-Iblib/arch" test.pl >> Can't load 'blib/arch/auto/NetCDF/NetCDF.so' for module NetCDF: >> blib/arch/auto/NetCDF/NetCDF.so: cannot restore segment prot after >> reloc: Permission denied at > > > Well, this is an SELinux issue. As compiled, NetCDF.so requires extra > permissions. You might try my RPMs at > www.cora.nwra.com/~orion/fedora/. Soon to be in Fedora Extras... > > ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ============================================================================== From orion at cora.nwra.com Tue Nov 14 10:20:54 2006 From: orion at cora.nwra.com (Orion Poplawski) Date: Tue, 14 Nov 2006 10:20:54 -0700 Subject: netCDF Perl license Message-ID: <4559FAF6.1030004@cora.nwra.com> As currently distributed, the netCDF Perl license is not OSI compatible because of the following clause: Further, the user agrees to credit UCAR/Unidata in any publications that result from the use of this software or in any product that includes this software. This is a restriction on use and is unacceptable in a truly free distribution like Fedora. The NetCDF license had a similar clause and was changed to: Further, UCAR requests that the user credit UCAR/Unidata in any publications that result from the use of this software or in any product that includes this software, although this is not an obligation. Please consider changing the netCDF Perl license in a similar manner so that it can be packaged as part of Fedora. Thanks! -- Orion Poplawski System Administrator 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane orion at cora.nwra.com Boulder, CO 80301 http://www.cora.nwra.com ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ============================================================================== From steve at unidata.ucar.edu Tue Nov 14 10:30:54 2006 From: steve at unidata.ucar.edu (Steve Emmerson) Date: Tue, 14 Nov 2006 10:30:54 -0700 Subject: netCDF Perl license In-Reply-To: Your message of "Tue, 14 Nov 2006 10:20:54 MST." <4559FAF6.1030004@cora.nwra.com> Message-ID: <200611141730.kAEHUsXX025048@unidata.ucar.edu> Orion, Your request will be part of the next release. Regards, Steve Emmerson ------- Original Message Date: Tue, 14 Nov 2006 10:20:54 -0700 From: Orion Poplawski To: support at unidata.ucar.edu , netcdf-perl at unidata.ucar.edu Subject: netCDF Perl license As currently distributed, the netCDF Perl license is not OSI compatible because of the following clause: Further, the user agrees to credit UCAR/Unidata in any publications that result from the use of this software or in any product that includes this software. This is a restriction on use and is unacceptable in a truly free distribution like Fedora. The NetCDF license had a similar clause and was changed to: Further, UCAR requests that the user credit UCAR/Unidata in any publications that result from the use of this software or in any product that includes this software, although this is not an obligation. Please consider changing the netCDF Perl license in a similar manner so that it can be packaged as part of Fedora. Thanks! -- Orion Poplawski System Administrator 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane orion at cora.nwra.com Boulder, CO 80301 http://www.cora.nwra.com ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ============================================================================== ------- End of Original Message ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ============================================================================== From orion at cora.nwra.com Thu Nov 16 11:52:24 2006 From: orion at cora.nwra.com (Orion Poplawski) Date: Thu, 16 Nov 2006 11:52:24 -0700 Subject: netCDF Perl license In-Reply-To: <200611141730.kAEHUsXX025048@unidata.ucar.edu> References: <200611141730.kAEHUsXX025048@unidata.ucar.edu> Message-ID: <455CB368.5050707@cora.nwra.com> Steve Emmerson wrote: > Orion, > > Your request will be part of the next release. > > Regards, > Steve Emmerson Thank you! -- Orion Poplawski System Administrator 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane orion at cora.nwra.com Boulder, CO 80301 http://www.cora.nwra.com ============================================================================== To unsubscribe netcdf-perl, visit: http://www.unidata.ucar.edu/mailing-list-delete-form.html ==============================================================================