You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
Index: compilers/imcc/imcc.l |
|
--- compilers/imcc/imcc.l.orig 2010-09-21 09:48:54.000000000 +0200 |
|
+++ compilers/imcc/imcc.l 2010-09-24 10:07:42.000000000 +0200 |
|
@@ -115,6 +115,7 @@ |
|
%option never-interactive |
|
%option stack |
|
%option yylineno |
|
+%option array |
|
|
|
LETTER [a-zA-Z_@] |
|
DIGIT [0-9] |
|
Index: config/auto/icu.pm |
|
--- config/auto/icu.pm.orig 2010-09-21 09:48:56.000000000 +0200 |
|
+++ config/auto/icu.pm 2010-09-24 10:07:42.000000000 +0200 |
|
@@ -328,7 +328,7 @@ |
|
if (! -d $icuheaders) { |
|
$without = 1; |
|
} |
|
- $icuheaders .= "/include"; |
|
+ $icuheaders .= "/include/icu"; |
|
if (! -d $icuheaders) { |
|
$without = 1; |
|
} |
|
Index: config/init/install.pm |
|
--- config/init/install.pm.orig 2010-09-21 09:48:56.000000000 +0200 |
|
+++ config/init/install.pm 2010-09-24 10:07:42.000000000 +0200 |
|
@@ -85,7 +85,7 @@ |
|
my $mandir = assign_dir( $conf, 'mandir', $prefix, '/man' ); |
|
|
|
# --srcdir=DIR source code files PREFIX/src] |
|
- my $srcdir = assign_dir( $conf, 'srcdir', $prefix, '/src' ); |
|
+ my $srcdir = assign_dir( $conf, 'srcdir', $prefix, '/share/parrot/src' ); |
|
|
|
$conf->data->set( |
|
prefix => $prefix,
|
|
|