[27292] in Perl-Users-Digest
Perl-Users Digest, Issue: 9038 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Mar 10 03:05:49 2006
Date: Fri, 10 Mar 2006 00:05:05 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Fri, 10 Mar 2006 Volume: 10 Number: 9038
Today's topics:
for installing perl modules - is there a default C comp <imfeaw5672@pacbell.net>
Regex: All except leading global substitution... <peter.hill@modulus.com.au>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Fri, 10 Mar 2006 05:41:06 GMT
From: "sm" <imfeaw5672@pacbell.net>
Subject: for installing perl modules - is there a default C compiler on win X64
Message-Id: <Sj8Qf.44090$F_3.9017@newssvr29.news.prodigy.net>
Hi Folks,
I had posted this on perl Tk group but had no response. I hope some one can
help.
I have Win X64 box. When installing some of the modules I get the following
errors:
Test Compiling config/signedchar.c
'cl' is not recognized as an internal or external command,
operable program or batch file.
Test Compile/Run config/unsigned.c
'cl' is not recognized as an internal or external command,
operable program or batch file.
Test Compiling config/Ksprintf.c
...................
I would like to know what C compiler pacakge I need for this. I downloaded a
GNU GCC
for Win but the compiler is named something other than "lc". Is there
another compiler
I can use on Win X64.
Thanks,
-sm
------------------------------
Date: Fri, 10 Mar 2006 04:51:08 GMT
From: "Peter Hill" <peter.hill@modulus.com.au>
Subject: Regex: All except leading global substitution...
Message-Id: <0B7Qf.2281$dy4.2233@news-server.bigpond.net.au>
I think I am misunderstanding how /g works; the following (incorrect)
program does not remove all non-leading vowels, just the 1st non-leading
vowel. Corrections please?
#! /usr/bin/perl -w
use strict;
#remove all non-leading vowels
my $word = 'ABEDU';
$word =~ s/(^..*?)[AEIOU](.*)/$1$2/g;
print qq{$word\n};
tia
Peter Hill
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V10 Issue 9038
***************************************