Re: Distinguish module loading error: Compilation fail vs. not existing

2017-11-17 Thread Chas. Owens
er. > Maybe I should use Try::Tiny: > > #!/usr/bin/env perl > use 5.020; > use warnings; > use strict; > > use Try::Tiny; > use Module::Load; > > my $module= 'AB::CD'; > > try { > autoload($module); > } > catch { > if (

Re: Distinguish module loading error: Compilation fail vs. not existing

2017-11-17 Thread Simon Reinhardt
Thanks for your answer. Maybe I should use Try::Tiny: #!/usr/bin/env perl use 5.020; use warnings; use strict; use Try::Tiny; use Module::Load; my $module= 'AB::CD'; try { autoload($module); } catch { if ($_ =~ /Compilation failed in require/) { say "com

Re: Distinguish module loading error: Compilation fail vs. not existing

2017-11-17 Thread Chas. Owens
This is probably the best technique to use. I would note that your code is not handling exceptions in the safest way. You can increase the safety of your code by saying: eval { autoload($module); 1; #force true value on success } or do { if ($@ =~ /Compilation failed in require

Distinguish module loading error: Compilation fail vs. not existing

2017-11-17 Thread Simon Reinhardt
x27;AB::CD'; eval { autoload($module); }; if ($@) { if ($@ =~ /Compilation failed in require/) { say "compilation failed"; } elsif ($@ =~ /Can't locate .* in \@INC/) { say "module not found"; } } -- To unsubscribe, e-mail: begin

Re: Compilation fails with Padre (a Perl IDE) on RHEL-based distros (CentOS, etc.)

2015-05-26 Thread Shawn H Corey
On Tue, 26 May 2015 11:53:55 -0400 "someone called" wrote: > I tried but failed (wxWidgets is a requirement of Padre) as root: Wx requires some development libaries: libgconf*-dev libgtk*-dev libgstreamer*dev libgstreamer-plugins-base*-dev where * is to be replace with the version number, if an

Re: Compilation fails with Padre (a Perl IDE) on RHEL-based distros (CentOS, etc.)

2015-05-26 Thread John SJ Anderson
On Tue, May 26, 2015 at 8:53 AM, someone called wrote: > ATTENTION: It apperars 'g++' is not a working compiler, please make > sure all necessary packages are installed. > > that is your problem. For whatever reason, g++ (the GNU C++ compiler) is not installed properly, or is not being foun

Compilation fails with Padre (a Perl IDE) on RHEL-based distros (CentOS, etc.)

2015-05-26 Thread someone called
; compiler compatibility: nc 0; options: no debug, unicode, no mslu # BEGIN failed--compilation aborted at t/01_load.t line 6. # Looks like you failed 1 test of 1. t/01_load.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests t/zy_pod_coverage.t .. skipped: Test::Pod::Cove

Re: Compilation 5.18.0 on RHEL 6.4 fails to use threads (?)

2013-09-19 Thread Alexander Karner
atement is a lie as RHEL does not contain a threaded Perl. But I'll try perlbrew Mit freundlichen Grüßen / Kind regards Alexander Karner From: Brian Fraser To: Alexander Karner/Germany/IBM@IBMDE, Cc: Perl Beginners Date: 19.09.2013 14:29 Subject:Re: Compilation

Re: Compilation 5.18.0 on RHEL 6.4 fails to use threads (?)

2013-09-19 Thread Brian Fraser
On Thu, Sep 19, 2013 at 8:16 AM, Alexander Karner wrote: > Hi! > > I got the list of options from there: * > http://mail.perlide.org/pipermail/padre-dev/2010-June/001863.html*<http://mail.perlide.org/pipermail/padre-dev/2010-June/001863.html> > > But I checked a compila

Re: Compilation 5.18.0 on RHEL 6.4 fails to use threads (?)

2013-09-19 Thread Alexander Karner
Hi! I got the list of options from there: http://mail.perlide.org/pipermail/padre-dev/2010-June/001863.html But I checked a compilation with sh Configure -des -Dusethreads -Dprefix=$HOME/soft/perl/5.18.0 -Dinstallusrbinperl=n -Accflags='-pthread' This results in [...snip..

Re: Compilation 5.18.0 on RHEL 6.4 fails to use threads (?)

2013-09-18 Thread Brian Fraser
On Wed, Sep 18, 2013 at 10:02 AM, Alexander Karner wrote: > Hi! > While I'm not a beginner with Perl it seems that I'm somewhat a beginner > if it comes to compilation: > > I try to compile 5.18.0 on my RHEL 6.4 system. Primarily in order to be > able to use Pad

Compilation 5.18.0 on RHEL 6.4 fails to use threads (?)

2013-09-18 Thread Alexander Karner
Hi! While I'm not a beginner with Perl it seems that I'm somewhat a beginner if it comes to compilation: I try to compile 5.18.0 on my RHEL 6.4 system. Primarily in order to be able to use Padre. This is the command to create the configuration: sh Configure -de \ -Doptimize='-O2

system compilation error

2010-05-21 Thread mustafa rifaee
Hello; thanks for your reply; i am sorry for my error questions, but i have another error now when i request the: http://127.0.0.1/srs/registrar i get this erro: [Thu May 20 17:04:43 2010] [error] [client 127.0.0.1] failed to resolve handler `SRS::RequestHandler': ModPerl::Util::exit: (12) ex

Re: Strange compilation error.

2010-05-14 Thread John W. Krahn
Meghanand Acharekar wrote: Hello, Hello, I have written following perl code to sort file in subfolders according to regex matching I don't see any regular expressions in the code you provided? its giving me following error while compiling the code. Global symbol "@i" requires explicit pa

Re: Strange compilation error.

2010-05-14 Thread Shlomi Fish
On Friday 14 May 2010 11:58:36 Meghanand Acharekar wrote: > Hello, > > I have written following perl code to sort file in subfolders according to > regex matching its giving me following error > while compiling the code. > > Global symbol "@i" requires explicit package name at sortfiles.pl line 2

Strange compilation error.

2010-05-14 Thread Meghanand Acharekar
Hello, I have written following perl code to sort file in subfolders according to regex matching its giving me following error while compiling the code. Global symbol "@i" requires explicit package name at sortfiles.pl line 21. Global symbol "@i" requires explicit package name at sortfiles.pl lin

Re: Question about compilation and dispatch tables

2009-07-19 Thread Uri Guttman
n create those constants and then export them as real constants (you export slower subs). SB> If I understand correctly, even though Perl is interpreted, the SB> compilation only happens once (until the object goes away), so I'd like SB> to keep this type of functionality within BEGIN bl

Question about compilation and dispatch tables

2009-07-19 Thread Steve Bertrand
, even though Perl is interpreted, the compilation only happens once (until the object goes away), so I'd like to keep this type of functionality within BEGIN blocks. I want to test the waters of dispatch tables and callbacks by having my code create it's own logic diagram (well, in text th

Re: perl compilation issue - using global variable

2008-11-21 Thread ashish nainwal
I am using perlcc to compile perl script On Thu, Nov 20, 2008 at 8:25 PM, Chas. Owens <[EMAIL PROTECTED]> wrote: > On Thu, Nov 20, 2008 at 00:05, ashish nainwal <[EMAIL PROTECTED]> > wrote: > > Thanks for the info. I will be using my perl script for AIX but I am not > > able to find a supporting

Re: perl compilation issue - using global variable

2008-11-20 Thread Chas. Owens
On Fri, Nov 21, 2008 at 01:55, ashish nainwal <[EMAIL PROTECTED]> wrote: > I am using perlcc to compile perl script Yeah, that is a bad idea. from http://search.cpan.org/~nwclark/perl-5.8.8/utils/perlcc.PL: The code generated in this way is not guaranteed to work. The whole codegen suite (perlcc

Re: perl compilation issue - using global variable

2008-11-20 Thread Chas. Owens
On Thu, Nov 20, 2008 at 00:05, ashish nainwal <[EMAIL PROTECTED]> wrote: > do u have any such doc..please provide it to me! > > On Thu, Nov 20, 2008 at 10:35 AM, ashish nainwal > <[EMAIL PROTECTED]>wrote: > >> Thanks for the info. I will be using my perl script for AIX but I am not >> able to find

Re: perl compilation issue - using global variable

2008-11-20 Thread Chas. Owens
On Thu, Nov 20, 2008 at 00:05, ashish nainwal <[EMAIL PROTECTED]> wrote: > Thanks for the info. I will be using my perl script for AIX but I am not > able to find a supporting IBM official doc which says that AIX comes with > perl by default. snip What are you using to create the binary? PAR::Pack

Re: perl compilation issue - using global variable

2008-11-20 Thread ashish nainwal
Thanks for the info. I will be using my perl script for AIX but I am not able to find a supporting IBM official doc which says that AIX comes with perl by default. On Thu, Nov 20, 2008 at 10:32 AM, Mr. Shawn H. Corey <[EMAIL PROTECTED]>wrote: > On Thu, 2008-11-20 at 10:23 +0530, ashish nainwal wr

Re: perl compilation issue - using global variable

2008-11-20 Thread ashish nainwal
do u have any such doc..please provide it to me! On Thu, Nov 20, 2008 at 10:35 AM, ashish nainwal <[EMAIL PROTECTED]>wrote: > Thanks for the info. I will be using my perl script for AIX but I am not > able to find a supporting IBM official doc which says that AIX comes with > perl by default. > >

Re: perl compilation issue - using global variable

2008-11-20 Thread ashish nainwal
I want to compile a perl script because I want to run it on systems which dont have perl installed. Does creating an executable solve this purpose? If yes, then how can I do that? On Wed, Nov 19, 2008 at 10:38 PM, Mr. Shawn H. Corey <[EMAIL PROTECTED]>wrote: > On Wed, 2008-11-19 at 04:03 -0800, a

Re: perl compilation issue - using global variable

2008-11-19 Thread Mr. Shawn H. Corey
On Thu, 2008-11-20 at 10:23 +0530, ashish nainwal wrote: > I want to compile a perl script because I want to run it on systems > which > dont have perl installed. > Does creating an executable solve this purpose? If yes, then how can I > do > that? All versions of Linux, BSD and UNIX come with Per

Re: perl compilation issue - using global variable

2008-11-19 Thread Mr. Shawn H. Corey
On Wed, 2008-11-19 at 04:03 -0800, ashish wrote: > Can someone please tell me how to compile a perl script which is > calling global variables and then how should the executable be used? > There is no need to compile a Perl script. To run it, call it with perl: perl ftp.pl Or you can make it

perl compilation issue - using global variable

2008-11-19 Thread ashish
Hi Can someone please tell me how to compile a perl script which is calling global variables and then how should the executable be used? I have created a AIX shell script (tool.sh) that parses a couple of files to export few global variables and then shows the end result. Now i call these variabl

Date:Calc and Bit::Vector compilation problems on 64 but linux

2006-10-23 Thread Igor Nikolic
Hello list, I have a question on compilation problems for Date::Calc on a 64 bit RHEL machine. When I use cpan to install Date::Calc and Bit::Vector I get the following problem : gcc -shared Calc.o DateCalc.o -o blib/arch/auto/Date/Calc/Calc.so /usr/bin/ld: skipping incompatible /usr/lib

Re: Compilation failed in require

2006-08-23 Thread Ranish George
Bala Murugan wrote: Hi All, While running the following temp.pl script, it throws the following error message. $ perl temp.pl HELLO Compilation failed in require at temp.pl line 2. $ $ cat temp.pl #!/usr/bin/perl require "/home/bala/hello.pl"; $ cat hello.pl #!/usr/bin/perl di

Re: Compilation failed in require

2006-08-23 Thread John W. Krahn
Bala Murugan wrote: > Hi All, Hello, > While running the following temp.pl script, it throws the following error > message. > > $ perl temp.pl > HELLO > Compilation failed in require at temp.pl line 2. > $ > > $ cat temp.pl > #!/usr/bin/perl > require "

Compilation failed in require

2006-08-23 Thread Bala Murugan
Hi All, While running the following temp.pl script, it throws the following error message. $ perl temp.pl HELLO Compilation failed in require at temp.pl line 2. $ $ cat temp.pl #!/usr/bin/perl require "/home/bala/hello.pl"; $ cat hello.pl #!/usr/bin/perl die "HELLO\n"; If

RE: compilation of Devel-Size for DataDumper

2006-06-15 Thread Smith, Derek
>-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom >Phoenix >Sent: Thursday, June 15, 2006 3:21 PM >To: Smith, Derek >Cc: beginners@perl.org >Subject: Re: compilation of Devel-Size for DataDumper >On 6/15/06, Smith, Derek &

Re: compilation of Devel-Size for DataDumper

2006-06-15 Thread Tom Phoenix
On 6/15/06, Smith, Derek <[EMAIL PROTECTED]> wrote: How can I tell the HPUX 11.11 system to not use it default C compiler /usr/bin/cc but instead use gcc version 4.1.1? If you're compiling a module, use the same compiler that built your perl binary. But that should happen automatically, if you

compilation of Devel-Size for DataDumper

2006-06-15 Thread Smith, Derek
How can I tell the HPUX 11.11 system to not use it default C compiler /usr/bin/cc but instead use gcc version 4.1.1? I manually edited the Makefile to point CC=/usr/local/bin/gcc but I get the errors below: Do I need an ANSI C compiler? Please advise! Thank you Derek As root:

Re: Math::Currency compilation failure

2005-09-20 Thread Todd W
"Peter Rabbitson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Hello list, > > I am trying to install Math::Currency from cpan and I can not make > > anything out of the error message I get. Any advice would be > > appreciated. > > > > Peter > > > > > > > > CPAN.pm: G

Re: Math::Currency compilation failure

2005-09-20 Thread Peter Rabbitson
> Hello list, > I am trying to install Math::Currency from cpan and I can not make > anything out of the error message I get. Any advice would be > appreciated. > > Peter > > > > CPAN.pm: Going to build J/JP/JPEACOCK/Math-Currency-0.40.tar.gz > > Checking if your kit is complete...

Math::Currency compilation failure

2005-09-20 Thread Peter Rabbitson
Hello list, I am trying to install Math::Currency from cpan and I can not make anything out of the error message I get. Any advice would be appreciated. Peter CPAN.pm: Going to build J/JP/JPEACOCK/Math-Currency-0.40.tar.gz Checking if your kit is complete... Looks good Writing Make

Strange compilation error.

2005-08-02 Thread jhonnystecchino
When i compile perl 5.8.7 , 5.8.6 and 5.6.2, the compiler gives me always the same error: I type: ./Configure -d make and then the error appears: `sh cflags "optimize='-O2'" toke.o` toke.c CCCMD = cc -DPERL_CORE -c -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_Sl

Strange compilation error.

2005-07-28 Thread jhonnystecchino
When i compile perl 5.8.7 , 5.8.6 and 5.6.2, the compiler gives me always the same error: I type: ./Configure -d make and then the error appears: `sh cflags "optimize='-O2'" toke.o` toke.c CCCMD = cc -DPERL_CORE -c -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_Sl

Re: can anyone help resolve compilation error related to use constant

2005-06-27 Thread Wiggins d'Anconia
s your issue. You also may want to read, perldoc constant Particularly the section on defining multiple constants at once. It can reduce the typing, and *maybe* be more readable. I have used both ways and don't have a strong feeling in either direction. HTH, http://danconia.org > > I

Re: can anyone help resolve compilation error related to use constant

2005-06-27 Thread MEENA SELVAM
nt SF_ERANGE => 4 # Out of range I get the following compilation error: -- use not allowed in expression at /usr/local/sf/lib/perl/5.8.3/SF/SFError.pm at line 10 end of line syntax error at line 10 - near use constant compilation failed in require at

Re: Digest-SHA2.10 compilation on AIX 5.2 fails

2005-03-01 Thread DBSMITH
Re: Digest-SHA2.10 compilation on

Re: Digest-SHA2.10 compilation on AIX 5.2 fails

2005-03-01 Thread Wiggins d'Anconia
[EMAIL PROTECTED] wrote: I am running AIX 5.2 with gcc 3.3.2 Can anyone help? I looked for the specific list and could not find it. Here are my errors after a make with CC pointed to cc_r and /usr/local/bin/gcc : (See attached file: out)(See attached file: outwithgcc) derek In general the compile

Digest-SHA2.10 compilation on AIX 5.2 fails

2005-02-28 Thread DBSMITH
I am running AIX 5.2 with gcc 3.3.2 Can anyone help? I looked for the specific list and could not find it. Here are my errors after a make with CC pointed to cc_r and /usr/local/bin/gcc : (See attached file: out)(See attached file: outwithgcc) derek out Description: Binary data outwithgcc

compilation error on z/OS

2004-12-23 Thread Rajarshi Das
Hi, I downloaded perl-5.8.5 and have built the same on a z/OS box with dynamic loading enabled (-Dmake=gmake -Dusedl -de). However, if I run the Embed.t test script, I get a error : archive library 'libperl.a' not found. The libperl.a wasnt built. However, a libperl.so was built by default. O

Re: Digest:MD5 compilation errors...

2004-05-25 Thread Jenda Krynicky
From: [EMAIL PROTECTED] (PerlDiscuss - Perl Newsgroups and mailing lists) > I'm trying to install Digest:MD5 2.33 on RHES 3 and getting > compilation errors: > > perl Makefile.PL > Perl's config says that U32 access must be aligned. > Writing Makefile for Digest:

Digest:MD5 compilation errors...

2004-05-25 Thread PerlDiscuss - Perl Newsgroups and mailing lists
I'm trying to install Digest:MD5 2.33 on RHES 3 and getting compilation errors: perl Makefile.PL Perl's config says that U32 access must be aligned. Writing Makefile for Digest::MD5 make Makefile:85: *** missing separator. Stop. Here's a snippet of the Makefile startin

Re: Compilation

2004-03-30 Thread WC -Sx- Jones
Wiggins d Anconia wrote: (attribute missing from OP) is there a way to compile perl programs without perlcc or is there any other way to hide my source code? perldoc -q 'hide the source' True - however ... The ONLY way to hide the source is to render it completely unmaintainable by any reasonally

Re: Compilation

2004-03-30 Thread Wiggins d Anconia
> is there a way to compile perl programs without perlcc or is there any > other way to hide my source code? > perldoc -q 'hide the source' http://danconia.org -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Antwort: Compilation

2004-03-30 Thread Manfred . Beilfuss
yes Sir , there are several possibilities e.g. perlapp : J:\mbf>perlapp -? PerlApp 5.0.3 build 503 Copyright (C) 1998-2002 ActiveState Corp. All rights reserved. Usage: perlapp [options...]

Compilation

2004-03-30 Thread max4o
is there a way to compile perl programs without perlcc or is there any other way to hide my source code? - This mail is from: <[EMAIL PROTECTED]> - -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Linux Kernel Version and Perl Compilation

2003-09-12 Thread Steve Grazzini
On Fri, Sep 12, 2003 at 12:30:44PM -0500, Wiggins d'Anconia wrote: > I know there were substantial improvements from 5.6.0 to 5.6.1 but I > am not sure any of them will affect my code, any in particular I should > be on the look out for? It's perfectly usable, but 5.6.0 did end up with a reputatio

Re: Linux Kernel Version and Perl Compilation

2003-09-12 Thread david
Wiggins D'Anconia wrote: > Now to my actual question, and this may be more a Linux question than > Perl, but I thought I would see what the gurus have to say, could I run > into issues with a Perl compiled on one kernel version aka 2.2.16 and it > running under a different, specifically 2.4.9 (smp

Re: Linux Kernel Version and Perl Compilation

2003-09-12 Thread John W. Krahn
Wiggins D'Anconia wrote: > > Currently I am looking at a new hosting provider and already hit one > strike where the Perl version they had listed on their "Packages" page > differed from that installed, aka they listed 5.6.1 and have 5.6.0 > installed which really tinkers my toys, but I may be abl

Linux Kernel Version and Perl Compilation

2003-09-12 Thread Wiggins d'Anconia
Currently I am looking at a new hosting provider and already hit one strike where the Perl version they had listed on their "Packages" page differed from that installed, aka they listed 5.6.1 and have 5.6.0 installed which really tinkers my toys, but I may be able to let that one slip. I know th

RE: Conditional compilation

2003-09-11 Thread Wiggins d'Anconia
at Perl Expect is not currently installed on all the > machines. > > Does Perl have any conditional compilation so that I can somehow NOT execute > the use statement on the machines that do not have expect? Or is there > another way to handle this situation? > perldoc -f eval

Re: Conditional compilation

2003-09-11 Thread Beau E. Cox
- Original Message - From: "Harter, Douglas" <[EMAIL PROTECTED]> To: "Beginners Mailing List Perl (E-mail)" <[EMAIL PROTECTED]> Sent: Thursday, September 11, 2003 4:46 AM Subject: Conditional compilation > I am writing a Perl script which will run o

Conditional compilation

2003-09-11 Thread Harter, Douglas
I am writing a Perl script which will run on multiple machines. I have a use Expect; in the script. The problem is that Perl Expect is not currently installed on all the machines. Does Perl have any conditional compilation so that I can somehow NOT execute the use statement on the machines

Re: Re : Compilation Errors

2003-06-28 Thread R. Joseph Newton
Derek Byrne wrote: > Last question on this, but, is there anything I should be aware of if I code > the Fred prog like this : Yes > #!perl -w use strict; # always use warnings; # unless you fully understand why you are turning them off. The strict and warnings commands will

RE: Re : Compilation Errors

2003-06-26 Thread Derek Byrne
ent: 27 June 2003 00:51 To: 'Derek Byrne'; '[EMAIL PROTECTED]' Subject: RE: Re : Compilation Errors > -Original Message- > From: Derek Byrne [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2003 4:44 PM > To: 'LoBue, Mark'; Derek Byrne; '[EMAIL

RE: Re : Compilation Errors

2003-06-26 Thread LoBue, Mark
> -Original Message- > From: Derek Byrne [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2003 4:44 PM > To: 'LoBue, Mark'; Derek Byrne; '[EMAIL PROTECTED]' > Subject: RE: Re : Compilation Errors > > > Oopsie - just saw my own mistake, f

RE: Re : Compilation Errors

2003-06-26 Thread Derek Byrne
Mark [mailto:[EMAIL PROTECTED] Sent: 27 June 2003 00:45 To: 'Derek Byrne'; '[EMAIL PROTECTED]' Subject: RE: Re : Compilation Errors > -Original Message- > From: Derek Byrne [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2003 4:15 PM > To: '[EMAIL PROTEC

RE: Re : Compilation Errors

2003-06-26 Thread LoBue, Mark
> -Original Message- > From: Derek Byrne [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2003 4:15 PM > To: '[EMAIL PROTECTED]' > Subject: FW: Re : Compilation Errors > > > Just a note - running win2k and perl v5.8.0 (built for > MSWin32-x86-mult

FW: Re : Compilation Errors

2003-06-26 Thread Derek Byrne
Just a note - running win2k and perl v5.8.0 (built for MSWin32-x86-multi-thread). -Original Message- From: Derek Byrne Sent: 27 June 2003 00:13 To: [EMAIL PROTECTED] Subject: Re : Compilation Errors Hi All, Reading through Learning Perl (3rd Ed), and messing around with Binary

Re : Compilation Errors

2003-06-26 Thread Derek Byrne
ed \n"; $fred -= 6; print "Subtract 6 : $fred \n"; $fred /= 2; print "Divide by 2 : $fred \n"; #$fred .= 5 $fred = $fred . 5 print "$fred \n"; And I get the following error : C:\SCRIPTS\test>perl fred.pl syntax error at fred.pl line 14, near "print&

Error in the compilation of vpopmail module

2003-01-22 Thread Bruno Negrao - Perl List
Hi, I'm trying to install a module from CPAN, the vpopmail.pm module. I'm running redhat 8.0 + vpopmail 5.2.1. When I run 'make' to compile the makefile created by the makefile.PL script, i receive the following error messages: -

Re: Error with perl compilation of GD

2002-05-31 Thread Janek Schleicher
Luis Valencia wrote at Thu, 30 May 2002 17:44:23 +0200: > HI, i try all of this and now i got a new error message > > proxyserver /downloads/GD-1.33 > sudo make perl > gcc -c -I/usr/local/include -I/usr/local/include/gd -fno-strict-aliasing -I/ >usr/local/include > -D_LARGEFILE_SOURCE -D_FILE_O

Re: Error with perl compilation of GD

2002-05-30 Thread Luis Valencia
r 1 What can it be now? - Original Message - From: "drieux" <[EMAIL PROTECTED]> To: "Luis Valencia" <[EMAIL PROTECTED]> Cc: "begin begin" <[EMAIL PROTECTED]> Sent: Friday, May 24, 2002 3:34 PM Subject: Re: Error with perl compilation us

Re: Error with perl compilation using gcc insted of cc

2002-05-24 Thread drieux
On Friday, May 24, 2002, at 11:49 , Luis Valencia wrote: > Hi, i try to install a squid log analyser call SquidGraph but when i try > to do the 'make' it receive the following output: > > proxyserver /downloads/GD-1.33 > sudo make > cc -c -I/usr/local/include -I/usr/local/include/gd -xO3 -xdep

Error with perl compilation using gcc insted of cc

2002-05-24 Thread Luis Valencia
Hi, i try to install a squid log analyser call SquidGraph but when i try to do the 'make' it receive the following output: proxyserver /downloads/GD-1.33 > sudo make cc -c -I/usr/local/include -I/usr/local/include/gd -xO3 -xdepend -DVERSION=\"1.33\" -DXS_VERSION=\"1.33\" -fPIC -I/usr/perl5/

Re: Compilation problem in TKSteal Widget software.

2002-02-11 Thread John W. Krahn
[PLEASE DO NOT post HTML and binary files] > Pankaj Warade wrote: > --=_NextPart_001_003E_01C1B322.4F739780 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Glacier