Jump to content

PawelS

Members
  • Posts

    2
  • Joined

  • Last visited

PawelS's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, Did you try to see output from the script? Try use CGI::Carp. At first you have to install it from cpanel, and add the code shown below to you script before use modules. best regards BEGIN { my $homedir = ( getpwuid($>) )[7]; my @user_include; foreach my $path (@INC) { if ( -d $homedir . '/perl' . $path ) { push @user_include, $homedir . '/perl' . $path; } } unshift @INC, @user_include; } use CGI::Carp qw(fatalsToBrowser);
  2. Hello, I would like to thank you at first for very powerful free hosting service. I am trying to run perl CGI based cgi::application modules. Most of additional modules are installed but "Clone" is returning an error (see below code block). 1. How to solve this problem. 2. Additional modules took 84MB disk space - is it possible to make clean after instalation? best regars, PawelS CPAN: File::Temp loaded ok (v0.20) CPAN.pm: Going to build R/RD/RDF/Clone-0.29.tar.gz perl-64bit-hack: enabled Checking if your kit is complete... Looks good 'EXTRALIBDIR' is not a known MakeMaker parameter name. 'OTHERLDFLAGS' is not a known MakeMaker parameter name. Writing Makefile for Clone cp Clone.pm blib/lib/Clone.pm AutoSplitting blib/lib/Clone.pm (blib/lib/auto/Clone) /usr/bin/perl /usr/lib/perl5/5.8.8/ExtUtils/xsubpp -typemap /usr/lib/perl5/5.8.8/ExtUtils/typemap Clone.xs > Clone.xsc && mv Clone.xsc Clone.c cc -c -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O3 -DVERSION=\"0.29\" -DXS_VERSION=\"0.29\" -fpic "-I/usr/lib/perl5/5.8.8/x86_64-linux/CORE" Clone.c Died at /scripts/cpan_sandbox/x86_64/cc line 24. make: *** [Clone.o] Error 2 RDF/Clone-0.29.tar.gz /usr/bin/make PREFIX=/home/latbob/perl/usr OTHERLDFLAGS=-L/usr/lib64 LDFLAGS=-L/usr/lib64 EXTRALIBDIR=/usr/lib64 PREFIX=/home/latbob/perl/usr OTHERLDFLAGS=-L/usr/lib64 LDFLAGS=-L/usr/lib64 EXTRALIBDIR=/usr/lib64 -- NOT OK Running make install Make had returned bad status, install seems impossible perlmod--Install done
×
×
  • Create New...