Re: pork missing a perl library

2006-02-25 Thread Jonathan Chen
On Sun, Feb 26, 2006 at 12:18:41AM -0600, Anthony Philipp wrote: On Sun, Feb 26, 2006 at 04:49:42PM +1300, Jonathan Chen [EMAIL PROTECTED] wrote: On Sat, Feb 25, 2006 at 06:07:36PM -0600, Anthony Philipp wrote: Hello everyone, When I try to run pork, I get this error: $

Problem building perl-5.8.8

2006-02-22 Thread Olivier Nicole
Hi, I updated the ports, now it is perl 5.8.8 and still the same `sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -O -pipe

Re: Problem building perl-5.8.8

2006-02-22 Thread Lowell Gilbert
Olivier Nicole [EMAIL PROTECTED] writes: I updated the ports, now it is perl 5.8.8 and still the same `sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -fno-strict-aliasing -pipe -Wdeclaration-after

Re: Problem building perl-5.8.8

2006-02-22 Thread Olivier Nicole
I updated the ports, now it is perl 5.8.8 and still the same `sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -O

Re: Problem building perl-5.8.8

2006-02-22 Thread Olivier Nicole
`sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -O -pipe -Wall toke.c: In function `S_scan_formline': toke.c:10596:

Problem building perl-5.8.7_2

2006-02-21 Thread Olivier Nicole
Hi, When I tryto build perl-5.8.7_2 I got: `sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.7/BSDPAN -fno-strict-aliasing -pipe -I/usr/local/include -O -pipe -Wall toke.c: In function `S_scan_formline': toke.c

Re: Problem building perl-5.8.7_2

2006-02-21 Thread Olivier Nicole
Hi, When I tryto build perl-5.8.7_2 I got: `sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.7/BSDPAN -fno-strict-aliasing -pipe -I/usr/local/include -O -pipe -Wall toke.c: In function `S_scan_formline': toke.c

perl script to capture header...??

2006-02-20 Thread Gary Kline
People, I think perl is the best way to capture NN THE FOR BAR and THE FOO BAR NN+1 and create the header in HTML CENTERTHE FOO BARBR A NAME=#NN NN /ABR /CENTER such that each of ch1 thru ch5 have

Unable to install libwww (Perl) on FBSD 5.4

2006-02-14 Thread Foo Ji-Haw
Hi all, I've not no problems installing most of the applications on FBSD 5.4. But I'm stuck with this one: Some background: 1. Just cvsupped 5 min ago 2. 5.4 OS 3. Using Perl 5.8.6 I'm trying to install ports/www/p5-libwww/, but in all the dependencies that it tries to install, it always die

Perl script help

2006-01-25 Thread Jack Stone
I'm using an old (2001) canned perl script to manage questions to my tech site. It is of big help since it can answer common questions from templates and a real time saver. Alas, that time saves is now being diminished by junk mail about cheap drugs and I'm trying to figure out how to filter

Re: Perl script help

2006-01-25 Thread Jack Stone
From: Greg Barniskis [EMAIL PROTECTED] To: Jack Stone [EMAIL PROTECTED] CC: freebsd-questions@freebsd.org Subject: Re: Perl script help Date: Wed, 25 Jan 2006 13:29:39 -0600 Jack Stone wrote: I'm using an old (2001) canned perl script to manage questions to my tech site. It is of big help since

Resolving Perl 'make test' Errors?

2006-01-20 Thread David Marshall
We're running perl 5.8.7_2 (from ports), with a mix of modules installed via ports and CPAN, all on a 6.0-STABLE machine. Someone tried to install WWW::Mechanize from CPAN, and when it tried to do a 'make test', there was an error. If I build the module in ports and go into the work directory

Threaded version of Perl

2005-12-29 Thread Gerard Seibert
Is there any real advantage to building a threaded version of Perl? What are the disadvantages, if any? -- Gerard [EMAIL PROTECTED] Vini, vidi, velcro... I came, I saw, I stuck around ___ freebsd-questions@freebsd.org mailing list

Re: what's an equivalent for the following Perl one-liner?

2005-12-23 Thread Nikos Vassiliadis
On Thursday 22 December 2005 00:04, Mikhail Teterin wrote: I'd like a sed string, that will remove both the carriage returns and the blanks at eol in one go. Perl appears to recognize the \r character and DTRT: perl -p -e 's,[ \r]+$,,' in out What's the sed's equivalent? Thanks! I

what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Mikhail Teterin
I'd like a sed string, that will remove both the carriage returns and the blanks at eol in one go. Perl appears to recognize the \r character and DTRT: perl -p -e 's,[ \r]+$,,' in out What's the sed's equivalent? Thanks! -mi

Re: what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Dan Nelson
In the last episode (Dec 21), Mikhail Teterin said: I'd like a sed string, that will remove both the carriage returns and the blanks at eol in one go. Perl appears to recognize the \r character and DTRT: perl -p -e 's,[ \r]+$,,' in out What's the sed's equivalent? Thanks! sed -E

Re: what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Mikhail Teterin
четвер 22 грудень 2005 13:32, Dan Nelson Ви написали: In the last episode (Dec 21), Mikhail Teterin said: I'd like a sed string, that will remove both the carriage returns and the blanks at eol in one go. Perl appears to recognize the \r character and DTRT: perl -p -e 's,[ \r

Re: what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Tijl Coosemans
On Thursday 22 December 2005 20:14, Mikhail Teterin wrote: четвер 22 грудень 2005 13:32, Dan Nelson Ви написали: In the last episode (Dec 21), Mikhail Teterin said: I'd like a sed string, that will remove both the carriage returns and the blanks at eol in one go. Perl appears to recognize

Re: what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Mikhail Teterin
Try col(1) or tr(1) to remove the carriage return and then sed to remove the spaces. Well, yes, but that's a two-stage process. A shame to go through the whole file twice just because our tools aren't good enough. -mi ___

Re: what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Don Hinton
On Thursday 22 December 2005 13:52, Mikhail Teterin wrote: Try col(1) or tr(1) to remove the carriage return and then sed to remove the spaces. Well, yes, but that's a two-stage process. A shame to go through the whole file twice just because our tools aren't good enough. How about this:

[solved]: Locale problems with perl

2005-12-15 Thread Erik Norgaard
Erik Norgaard wrote: perl: warning: Please check that your locale settings: LC_ALL = (unset), LANG = en_GB.ISO_8859-1 are supported and installed on your system. In login.conf I have: en_GB:English users:\ :charset=iso-8859-1:\ :lang=en_GB.ISO8859-1

Locale problems with perl

2005-12-14 Thread Erik Norgaard
Hi, I recently (two weeks ago) upgraded my system and all ports. But since then, whenever I install some perl module I get something like this: Begin Make output ## === Extracting for p5-Compress-Zlib-1.41 = MD5 Checksum OK for Compress-Zlib-1.41.tar.gz. = No SHA256 checksum

Re: Locale problems with perl

2005-12-14 Thread Frank Steinborn
Erik Norgaard wrote: Hi, I recently (two weeks ago) upgraded my system and all ports. But since then, whenever I install some perl module I get something like this: perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LC_ALL = (unset

Re: Locale problems with perl

2005-12-14 Thread Harley D. Eades III
On Wed, 2005-12-14 at 12:42 +0100, Frank Steinborn wrote: Erik Norgaard wrote: Hi, I recently (two weeks ago) upgraded my system and all ports. But since then, whenever I install some perl module I get something like this: perl: warning: Setting locale failed. perl: warning: Please

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-30 Thread David Landgren
Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Mark Kane
wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Michael C. Shultz
: On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Mark Kane
: Michael C. Shultz wrote: On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Michael C. Shultz
: On Saturday 26 November 2005 18:48, Mark Kane wrote: Michael C. Shultz wrote: On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Mark Kane
, Michael C. Shultz wrote: On Saturday 26 November 2005 18:48, Mark Kane wrote: Michael C. Shultz wrote: On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Michael C. Shultz
having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile the Perl modules for the new version. Unfortunately this is where I get stuck

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Mark Kane
system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile the Perl modules for the new version. Unfortunately this is where I

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-27 Thread Michael C. Shultz
everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile the Perl

After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Mark Kane
Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Michael C. Shultz
On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Mario Hoerich
# Mark Kane: [ upgrade perl 5.6.x-5.8.7 failed on 4-9R ] === p5-HTML-Tagset-3.10 depends on file: /usr/local/bin/perl5.8.7 - found === Configuring for p5-HTML-Tagset-3.10 /usr/libexec/ld-elf.so.1: /usr/local/lib/perl5/5.8.7/mach/auto/Cwd/Cwd.so: Undefined symbol perl_get_sv Hm. Just

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Mark Kane
Michael C. Shultz wrote: On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Michael C. Shultz
On Saturday 26 November 2005 18:48, Mark Kane wrote: Michael C. Shultz wrote: On Saturday 26 November 2005 17:13, Mark Kane wrote: Hi everyone. I finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Michael C. Shultz
problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile the Perl modules for the new version. Unfortunately this is where I get stuck

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Mark Kane
and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile the Perl modules for the new version. Unfortunately this is where I get stuck

Re: After upgrading Perl, cannot reinstall modules - Cwd.so: Undefined symbol perl_get_sv

2005-11-26 Thread Michael C. Shultz
finally did a big portupgrade on a 4.9-RELEASE system today and I'm having some problems with Perl. I got it updated to 5.8.7 (was 5.6.x before), ran use.perl port, and ran the perl-after-upgrade script which were all said in UPDATING. Now it's time to force upgrade/recompile the Perl modules

Building Perl 5.8.7

2005-11-21 Thread Olivier Nicole
Hi, I am trying to build perl 5.8.7 from the ports. On some machines it goes OK. On my 5.3 machines I get: BSDPAN -fno-strict-aliasing -pipe -I/usr/local/include -O -pipe -Wall `sh cflags optimize='-O -pipe' toke.o` -fpic toke.c CCCMD = gcc -DPERL_CORE -c -DAPPLLIB_EXP=/usr/local

Re: Building Perl 5.8.7

2005-11-21 Thread Kris Kennaway
On Tue, Nov 22, 2005 at 11:23:56AM +0700, Olivier Nicole wrote: Hi, I am trying to build perl 5.8.7 from the ports. On some machines it goes OK. On my 5.3 machines I get: BSDPAN -fno-strict-aliasing -pipe -I/usr/local/include -O -pipe -Wall `sh cflags optimize='-O -pipe' toke.o

Stop in subversion-perl

2005-11-05 Thread Gerard Seibert
I am sure that someone else has all ready asked this question, but I have not come across it. When trying to build 'subversion-perl', I receive this error message: //Start error message Snippet// /usr/local/bin/swig -noproxy -nopm -perl -I../../../../../subversion/bindings/sw ig -I

Re: Stop in subversion-perl

2005-11-05 Thread Don Hinton
Hi Gerard: On Saturday 05 November 2005 13:57, Gerard Seibert wrote: I am sure that someone else has all ready asked this question, but I have not come across it. When trying to build 'subversion-perl', I receive this error message: //Start error message Snippet// /usr/local/bin/swig

Port perl 5.8.7 on FreeBSD 4.10

2005-10-06 Thread Olivier Nicole
Hi, I have been trying to install theport of perl 5.8 on a FreeBSD machine 4.10 RELENG. Every time I try to execute the new perl I get: /usr/libexec/ld-elf.so.1: perl: Undefined symbol PL_exit_flags This happens on 2 different machines, both 4.10 FreeBSD fw2.cs.ait.ac.th 4.10-RELEASE-p16

Re: Port perl 5.8.7 on FreeBSD 4.10

2005-10-06 Thread Vladimir Tsvetkov
-- Forwarded message -- From: Vladimir Tsvetkov [EMAIL PROTECTED] Date: 2005-10-6 13:46 Subject: Re: Port perl 5.8.7 on FreeBSD 4.10 To: Olivier Nicole [EMAIL PROTECTED] 2005/10/6, Olivier Nicole [EMAIL PROTECTED]: What kind of script are you trying to execute? No script

Re: Port perl 5.8.7 on FreeBSD 4.10

2005-10-06 Thread Vladimir Tsvetkov
-- Forwarded message -- From: Vladimir Tsvetkov [EMAIL PROTECTED] Date: 2005-10-6 14:05 Subject: Re: Port perl 5.8.7 on FreeBSD 4.10 To: Olivier Nicole [EMAIL PROTECTED] Does this fix the problem? It does, now I have to figure out what is the problem in the library. Both

Fwd: Port perl 5.8.7 on FreeBSD 4.10

2005-10-06 Thread Vladimir Tsvetkov
-- Forwarded message -- From: Vladimir Tsvetkov [EMAIL PROTECTED] Date: 2005-10-6 13:57 Subject: Re: Port perl 5.8.7 on FreeBSD 4.10 To: Olivier Nicole [EMAIL PROTECTED] 2005/10/6, Olivier Nicole [EMAIL PROTECTED]: fw2on: env | grep LIBRA LD_LIBRARY_PATH=/lib:/usr/lib:/usr

Re: Perl / Webmin: ld-elf.so.1 issue

2005-10-04 Thread Mark Edwards
/libexec/ld-elf.so.1: /usr/local/bin/perl: Undefined symbol PL_exit_flags crontab: /usr/local/lib/webmin/cron/cron_editor.pl exited with status 1 I am running perl 5.8.7 from ports, and I have done the whole routine with setting use.perl port and perl_after_upgrade. I notice that there are two

Re: Perl / Webmin: ld-elf.so.1 issue

2005-10-03 Thread Mark Edwards
On Oct 3, 2005, at 1:33 AM, Lowell Gilbert wrote: Mark Edwards [EMAIL PROTECTED] writes: I am getting the following error in the browser when trying to use webmin's crontab editing feature: /usr/libexec/ld-elf.so.1: /usr/local/bin/perl: Undefined symbol PL_exit_flags crontab: /usr/local/lib

Re: Perl / Webmin: ld-elf.so.1 issue

2005-10-03 Thread Lowell Gilbert
Mark Edwards [EMAIL PROTECTED] writes: On Oct 3, 2005, at 1:33 AM, Lowell Gilbert wrote: Mark Edwards [EMAIL PROTECTED] writes: I am getting the following error in the browser when trying to use webmin's crontab editing feature: /usr/libexec/ld-elf.so.1: /usr/local/bin/perl

Re: Perl / Webmin: ld-elf.so.1 issue

2005-10-02 Thread Lowell Gilbert
Mark Edwards [EMAIL PROTECTED] writes: I am getting the following error in the browser when trying to use webmin's crontab editing feature: /usr/libexec/ld-elf.so.1: /usr/local/bin/perl: Undefined symbol PL_exit_flags crontab: /usr/local/lib/webmin/cron/cron_editor.pl exited with status 1

Perl / Webmin: ld-elf.so.1 issue

2005-09-30 Thread Mark Edwards
I am getting the following error in the browser when trying to use webmin's crontab editing feature: /usr/libexec/ld-elf.so.1: /usr/local/bin/perl: Undefined symbol PL_exit_flags crontab: /usr/local/lib/webmin/cron/cron_editor.pl exited with status 1 I am running perl 5.8.7 from ports

Threaded Perl Seg Fault

2005-09-06 Thread Charles Maner
Hi all. I'm running threaded Perl 5.8.7, compiled with ithreads, on FreeBSD 5.4 STABLE with 1.5GB RAM. Perl is now running out of memory as I'm getting Seg Faults/Core dumps. (I'm creating a max of 15 threads all parsing different HTML. There appears to only be 124MB of free physical memory

Perl setting locale failed

2005-09-02 Thread [EMAIL PROTECTED]
After having updated all freebsd 5.4 src ports I've issued the portsdb -uU command but freebsd complains endlessly: .. perl: warning: Please check that your locale settings: LC_ALL = (unset), LANG = it_IT.ISO_8859-15

Re: Perl setting locale failed

2005-09-02 Thread Parv
in message [EMAIL PROTECTED], wrote [EMAIL PROTECTED] thusly... After having updated all freebsd 5.4 src ports I've issued the portsdb -uU command but freebsd complains endlessly: .. perl: warning: Please check that your locale

Re: upgrading perl -ports

2005-09-01 Thread Jorn Argelo
Zan wrote: uname -m = i386 which -a perl = /usr/local/bin/perl /usr/bin/perl Please show: uname -m which -a perl On Tuesday, August 30, 2005, at 01:30 P:M, Lowell Gilbert wrote: Zan [EMAIL PROTECTED] writes: in my /usr/local/bin I can clearly see that there is a newer version

Re: upgrading perl -ports

2005-09-01 Thread Parv
in message [EMAIL PROTECTED], wrote Jorn Argelo thusly... About your problem, you should really recompile Perl from the ports-tree if you want to upgrade your Perl version. And after you did that, I always rebooted the machine. I don't know how it will function without rebooting the machine

Re: upgrading perl -ports

2005-09-01 Thread Jorn Argelo
Parv wrote: in message [EMAIL PROTECTED], wrote Jorn Argelo thusly... About your problem, you should really recompile Perl from the ports-tree if you want to upgrade your Perl version. And after you did that, I always rebooted the machine. I don't know how it will function without rebooting

Re: Perl 5.8.7 port requires libm.so.4

2005-08-31 Thread Kris Kennaway
On Tue, Aug 30, 2005 at 01:27:07PM -0500, Will Maier wrote: On Tue, Aug 30, 2005 at 02:16:18PM -0400, Lowell Gilbert wrote: Will Maier [EMAIL PROTECTED] writes: Hmm. I base my statement off the output from `uname -a`: FreeBSD `hostname` 5.4-SECURITY FreeBSD 5.4-SECURITY #0: Wed Jul

Re: upgrading perl -ports

2005-08-31 Thread Lowell Gilbert
Please don't top-post. Zan [EMAIL PROTECTED] writes: On Tuesday, August 30, 2005, at 01:30 P:M, Lowell Gilbert wrote: Zan [EMAIL PROTECTED] writes: in my /usr/local/bin I can clearly see that there is a newer version of perl (5.8.0) already there, but when I type 'perl -v' I see

Re: Perl 5.8.7 port requires libm.so.4

2005-08-31 Thread Will Maier
On Wed, Aug 31, 2005 at 04:52:22AM -0400, Kris Kennaway wrote: On Tue, Aug 30, 2005 at 01:27:07PM -0500, Will Maier wrote: Indulge a newb, then: how did that come about? I'm still figuring out port and packages and how they relate to the different releases. Do you mean that my portsnap'd

upgrading perl -ports

2005-08-30 Thread Zan
Hello, Would you please help me? in my /usr/local/bin I can clearly see that there is a newer version of perl (5.8.0) already there, but when I type 'perl -v' I see that I'm running off of 5.0. Is there anything else I can do besides trying the use.perl port command? Because that doesn't

Re: upgrading perl -ports

2005-08-30 Thread Norberto Meijome
Zan wrote: Hello, Would you please help me? in my /usr/local/bin I can clearly see that there is a newer version of perl (5.8.0) already there, but when I type 'perl -v' I see that I'm running off of 5.0. 5.8 is from ports. 5.0.6. i think, is system based Is there anything else I can do

Re: Perl 5.8.7 port requires libm.so.4

2005-08-30 Thread Lowell Gilbert
-u # portupgrade -varRPP I've also been reading /u/p/UPDATING before actually running portupgrade; today I noticed that the Perl 5.8.6-5.8.7 upgrade required running a script afterwards. I then ran portupgrade, which updated Perl, Ruby and some other ports. It failed on firefox and gtk20

Re: Perl 5.8.7 port requires libm.so.4

2005-08-30 Thread Will Maier
reading /u/p/UPDATING before actually running portupgrade; today I noticed that the Perl 5.8.6-5.8.7 upgrade required running a script afterwards. I then ran portupgrade, which updated Perl, Ruby and some other ports. It failed on firefox and gtk20, however, because it couldn't find libm.so.4

Re: Perl 5.8.7 port requires libm.so.4

2005-08-30 Thread Lowell Gilbert
Will Maier [EMAIL PROTECTED] writes: On Tue, Aug 30, 2005 at 09:19:01AM -0400, Lowell Gilbert wrote: I don't use freebsd-update, but I'd like to point out that libm.so.4 is on FreeBSD 6.x, not 5.x. So you don't seem to be running the base system you think you are. Hmm. I base my

Re: Perl 5.8.7 port requires libm.so.4

2005-08-30 Thread Will Maier
On Tue, Aug 30, 2005 at 02:16:18PM -0400, Lowell Gilbert wrote: Will Maier [EMAIL PROTECTED] writes: Hmm. I base my statement off the output from `uname -a`: FreeBSD `hostname` 5.4-SECURITY FreeBSD 5.4-SECURITY #0: Wed Jul 20 08:57:11 \ UTC 2005 [EMAIL

Re: upgrading perl -ports

2005-08-30 Thread Lowell Gilbert
Zan [EMAIL PROTECTED] writes: in my /usr/local/bin I can clearly see that there is a newer version of perl (5.8.0) already there, but when I type 'perl -v' I see that I'm running off of 5.0. Is there anything else I can do besides trying the use.perl port command? Because that doesn't seem

Re: upgrading perl -ports

2005-08-30 Thread Zan
uname -m = i386 which -a perl = /usr/local/bin/perl /usr/bin/perl Please show: uname -m which -a perl On Tuesday, August 30, 2005, at 01:30 P:M, Lowell Gilbert wrote: Zan [EMAIL PROTECTED] writes: in my /usr/local/bin I can clearly see that there is a newer version of perl (5.8.0

Re: upgrading perl -ports

2005-08-30 Thread Norberto Meijome
Zan wrote: 5.8 is from ports. 5.0.6. i think, is system based In my 'usr/local/BIN' perl5.8.0 already exists. ok you need to install the perl from ports before using use.perl port. What I want to know is how to switch to 5.8.0 WITHOUT using use.perl port because I already tried

Perl 5.8.7 port requires libm.so.4

2005-08-28 Thread Will Maier
reading /u/p/UPDATING before actually running portupgrade; today I noticed that the Perl 5.8.6-5.8.7 upgrade required running a script afterwards. I then ran portupgrade, which updated Perl, Ruby and some other ports. It failed on firefox and gtk20, however, because it couldn't find libm.so.4. I

Re: Crypt::RSA perl coredump on FreeBSD 5.4-RELEASE

2005-08-23 Thread Nagilum
Mike Friedman wrote: I installed the perl Crypt::RSA port the other day on my 5.4-RELEASE system. When I try to run a small perl script just to generate an RSA keypair, I get a perl core dump. There are a lot of prereqs that get installed with Crypt::RSA, so no doubt there's much

Crypt::RSA perl coredump on FreeBSD 5.4-RELEASE

2005-08-21 Thread Mike Friedman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This may not be an appropriate place for my question, but perhaps someone has a suggestion. I installed the perl Crypt::RSA port the other day on my 5.4-RELEASE system. When I try to run a small perl script just to generate an RSA keypair, I

Help Needed on cpan-perl-portupgrade

2005-08-13 Thread Denny White
Message originally cpan/bsdpan/ports need help. Really need help here. I really botched up perl cpan can no longer do some portugrading, either, that I need. Pasting the original message with threads in below here. Hate to reinstall system, since all other is working okay. Original thread here

Problems with p5-IO-Socket system perl on 4.x

2005-08-11 Thread Bill Moran
Can anyone confirm or deny? It looks like portupgrading p5-IO-Socket on FreeBSD 4.x breaks things unless the user manually replaces perl 5.005 with a more recent version of perl. I have a client who tripped across this while portupgrading MRTG. Anyone who can confirm or deny this? I haven't

Re: perl stdin

2005-08-04 Thread Daniel Marsh
On Thu, 04 Aug 2005 09:38:15 +0800, Michael Beattie [EMAIL PROTECTED] wrote: On 8/3/05, Wouter van Rooij [EMAIL PROTECTED] wrote: \ Hello, At the first place, sorry for my bad English. My question is: How can you, when you're writing a perl program, make a input (stdin) hidden, so

perl stdin

2005-08-03 Thread Wouter van Rooij
\ Hello, At the first place, sorry for my bad English. My question is: How can you, when you're writing a perl program, make a input (stdin) hidden, so that when someone is typing an input in the following program is hidden: #!/usr/bin/perl print Your name:; $name = STDIN I would like to get

Re: perl stdin

2005-08-03 Thread Michael Beattie
On 8/3/05, Wouter van Rooij [EMAIL PROTECTED] wrote: \ Hello, At the first place, sorry for my bad English. My question is: How can you, when you're writing a perl program, make a input (stdin) hidden, so that when someone is typing an input in the following program is hidden: #!/usr

Re: perl stdin

2005-08-03 Thread Benjamin Lutz
Wouter van Rooij wrote: \ Hello, At the first place, sorry for my bad English. My question is: How can you, when you're writing a perl program, make a input (stdin) hidden, so that when someone is typing an input in the following program is hidden: #!/usr/bin/perl print Your name

Upgrading Perl bsdpan / cpan-ports to freebsd-ports

2005-08-02 Thread Sander Holthaus - Orange XL
I'm trying to upgrade all of my Perl modules installed through CPAN to FreeBSD-port one's, but I'm running into a few difficulties with the following ports: bsdpan-DB_File-1.810 DB_File - Perl5 access to Berkeley DB version 1.x bsdpan-PerlIO-via-QuotedPrint-0.06 PerlIO::via::QuotedPrint

Perl module for parsing tcpdump file

2005-07-19 Thread Erik Nørgaard
Hi, I was wondering if there is a perl module that can read the tcpdump formated files produced by pflog. I've been looking in the ports collection but can't seem to fine a port whose name decrypts to tcpdump. I have a script that parses my maillog and blocks owned hosts or relays used

Re: Perl module for parsing tcpdump file

2005-07-19 Thread Glenn Dawson
At 12:11 AM 7/19/2005, Erik Nørgaard wrote: Hi, I was wondering if there is a perl module that can read the tcpdump formated files produced by pflog. I've been looking in the ports collection but can't seem to fine a port whose name decrypts to tcpdump. I don't think it's in ports

Re: perl-after-upgrade

2005-07-07 Thread legalois
Bob Hall wrote: I don't know squat about perl. I recently ran portupgrade, which upgraded perl. Goose stopped working, because the location for Curses.pm was no longer in @INC. I tried to run perl-after-upgrade, but I couldn't get it to run. I've got a book that said to use # perl perl

Re: perl-after-upgrade

2005-07-07 Thread Bob Hall
On Thu, Jul 07, 2005 at 06:55:58PM +0200, legalois wrote: Bob Hall wrote: I don't know squat about perl. I recently ran portupgrade, which upgraded perl. Goose stopped working, because the location for Curses.pm was no longer in @INC. I tried to run perl-after-upgrade, but I couldn't get

Re: perl-after-upgrade

2005-07-07 Thread Paul Schmehl
--On Thursday, July 07, 2005 14:39:44 -0400 Bob Hall [EMAIL PROTECTED] wrote: As I stated above, I used portupgrade. That means that any messages at the end of the perl upgrade scrolled off the screen and out of the screen buffer when portupgrade carried out the next install. One

Re: perl-after-upgrade

2005-07-07 Thread RW
On Wednesday 06 July 2005 20:10, Bob Hall wrote: I don't know squat about perl. I recently ran portupgrade, which upgraded perl. Goose stopped working, because the location for Curses.pm was no longer in @INC. I tried to run perl-after-upgrade, but I couldn't get it to run. I've got a book

Re: perl-after-upgrade

2005-07-07 Thread Bob Hall
On Thu, Jul 07, 2005 at 01:53:48PM -0500, Paul Schmehl wrote: --On Thursday, July 07, 2005 14:39:44 -0400 Bob Hall [EMAIL PROTECTED] wrote: As I stated above, I used portupgrade. That means that any messages at the end of the perl upgrade scrolled off the screen and out of the screen

speedy-cgi-perl mail list or forum

2005-07-07 Thread Noah
Somebody please direct me to a speedy-cgi-perl support mail list and/or support forum? thanks in advance, Noah ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

RE: speedy-cgi-perl mail list or forum

2005-07-07 Thread Tim Abbott
Have you tried http://www.codingforums.com/forumdisplay.php?f=5 ? Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Noah Sent: Thursday, July 07, 2005 7:58 PM To: freebsd-questions@freebsd.org Subject: speedy-cgi-perl mail list or forum Somebody

perl-after-upgrade

2005-07-06 Thread Bob Hall
I don't know squat about perl. I recently ran portupgrade, which upgraded perl. Goose stopped working, because the location for Curses.pm was no longer in @INC. I tried to run perl-after-upgrade, but I couldn't get it to run. I've got a book that said to use # perl perl-after-upgrade

Re: perl-after-upgrade

2005-07-06 Thread Bob Hall
On Wed, Jul 06, 2005 at 03:10:04PM -0400, Bob Hall wrote: I don't know squat about perl. I recently ran portupgrade, which upgraded perl. Goose stopped working, because the location for Curses.pm was no longer in @INC. I tried to run perl-after-upgrade, but I couldn't get it to run. I found

upgrade perl 5.8.6

2005-07-05 Thread John Larson
When I upgrade to perl 5.8.6 from 5.00 I get DBI not found in @INC array. what is the best way to upgrade the perl dbi. I tried portupgrade p-5* still have same problem help please John Larson __ Do you Yahoo!? Yahoo! Mail - Helps protect you

Re: upgrade perl 5.8.6

2005-07-05 Thread Kent Stewart
On Tuesday 05 July 2005 12:24 pm, John Larson wrote: When I upgrade to perl 5.8.6 from 5.00 I get DBI not found in @INC array. what is the best way to upgrade the perl dbi. I tried portupgrade p-5* still have same problem help please you have to upgrade all of the p5-\* ports. Kent -- Kent

Re: Perl + apache problem

2005-07-01 Thread Greg Maruszeczka
Jack Raats wrote: I've a little question. After upgrading perl to 5.8.7. I'm getting an error of Apache. It says Syntax error on line 239 of /usr/local/etc/apache/httpd.conf: Cannot load /usr/local/libexec/apache/libperl.so into server: Shared object libperl.so not found, required

Perl + apache problem

2005-06-30 Thread Jack Raats
I've a little question. After upgrading perl to 5.8.7. I'm getting an error of Apache. It says Syntax error on line 239 of /usr/local/etc/apache/httpd.conf: Cannot load /usr/local/libexec/apache/libperl.so into server: Shared object libperl.so not found, required by libperl.so After

Re: perl upgrade

2005-06-29 Thread Nikolas Britton
On 6/28/05, John Larson [EMAIL PROTECTED] wrote: I recently upgraded to perl 5.8.5.. I then issued the use.perl port command. I then issued the portupgrade 'p5-*' command as root. DBI cannot be found in the @INC array. what am I missing. John Larson South Lake Tahoe CA Can you tell us

Upgraded Perl; and lo, errors cause exim to fail

2005-06-28 Thread Joe Altman
Is anyone else seeing errorors like this: /libexec/ld-elf.so.1: Shared object libperl.so not found, required by exim after upgrading Perl when prompted by portversion? I notice that ld-elf.so.1 has two versions: 55 -r-xr-xr-x 1 root wheel 153244 Jun 3 14:05 ld-elf.so.1 54 -r-xr-xr-x 1

perl upgrade

2005-06-28 Thread John Larson
I recently upgraded to perl 5.8.5.. I then issued the use.perl port command. I then issued the portupgrade 'p5-*' command as root. DBI cannot be found in the @INC array. what am I missing. John Larson South Lake Tahoe CA

<    3   4   5   6   7   8   9   10   11   12   >