Embperl install error: apr_strings.h: No such file or directory

2007-05-04 Thread Tim_Grant
Trying to install Embperl 2.2.0 on a Linux 2.4.21-47.ELsmp box, under Apache 1.3.31, we are getting the below errors at make test. The only clue I have is that apr_strings.h seems to be a file for Apache Portable Runtime, which is generally associated with Apache 2. Any help is appreciated. > mak

Re: How does Embperl work with different Apache2 MPM models?

2007-05-04 Thread Gunnar Wolf
Gerald Richter - ECOS GmbH dijo [Fri, May 04, 2007 at 05:34:58AM +0200]: > > Probably we (and "we" might mean "the Debian maintainers for Embperl" > > or "our kind Gerald and his very nice team") should basically > > document prominently the user might find this situation :) > > What do you think

RE: About the regular expression problem

2007-05-04 Thread Gerald Richter - ECOS GmbH
HI, > I have a problem when I use regular expression. > The sample code: > [- $_ = "One Two Three" -] > [$ if(/(\S+) (\S+) (\S+)/) $] > The words are: [+$1+], [+$2+], [+$3+] > [$ endif $] > > The result should be "The words are: One, Two, Three," But I > got the result "The words are: One, Two,.

About the regular expression problem

2007-05-04 Thread Yuren Li
Hi, I have a problem when I use regular expression. The sample code: [- $_ = "One Two Three" -] [$ if(/(\S+) (\S+) (\S+)/) $] The words are: [+$1+], [+$2+], [+$3+] [$ endif $] The result should be "The words are: One, Two, Three," But I got the result "The words are: One, Two,." After trying, I f