[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: help, new akka release coming - 0.1a
- To: developer at arabeyes dot org
- Subject: Re: help, new akka release coming - 0.1a
- From: "Chahine M. Hamila" <mch at chaham dot com>
- Date: Thu, 18 Oct 2001 14:17:47 +0200
Thanks Moe and Summer for the report.
Looks like the problem was coming from an incompatibility between Perl 5
and Perl 5.6 in the chonfigure script
In any case, it's fixed.
Now, to test the thing again you can either:
1) wait for the fixed tarball which will be available in a few hours
(I'll keep the list informed when done).
2) apply the attached patch to chonfigure:
patch <chonf.patch
3) make the changes manually to the chonfigure script:
keep "use strict" as is, but
"our $foo" becomes "use vars qw($foo)"
in chonfigure this will be
"our %cache" becomes "use vars qw(%cache @SRC_DIRS)"
and remove the "our" from "our @SRC_DIRS = <CNF>
Yalla, keep the reports coming:)
Index: chonfigure
===================================================================
RCS file: /home/CVS/arabeyes/akka/chonfigure,v
retrieving revision 1.1
retrieving revision 1.2
diff -r1.1 -r1.2
16,18d15
< # * two modules can't have the same #
< # name even if in two different #
< # directories #
38c35
< our %cache;
---
> use vars qw(%cache @SRC_DIRS);
50c47
< our @SRC_DIRS = <CNF>;
---
> @SRC_DIRS = <CNF>;