Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 886507
Collapse All | Expand All

(-)a/Byte/Makefile.PL (-1 / +1 lines)
Lines 54-60 while (defined(my $file = readdir(ENC))) Link Here
54
closedir(ENC);
54
closedir(ENC);
55
55
56
WriteMakefile(
56
WriteMakefile(
57
              INC		=> "-I../Encode",
57
              INC		=> "-isystem../Encode",
58
          NAME		=> 'Encode::'.$name,
58
          NAME		=> 'Encode::'.$name,
59
          VERSION_FROM	=> "$name.pm",
59
          VERSION_FROM	=> "$name.pm",
60
          OBJECT		=> '$(O_FILES)',
60
          OBJECT		=> '$(O_FILES)',
(-)a/CN/Makefile.PL (-1 / +1 lines)
Lines 29-35 unless ($ENV{AGGREGATE_TABLES}){ Link Here
29
my $name = 'CN';
29
my $name = 'CN';
30
30
31
WriteMakefile(
31
WriteMakefile(
32
              INC		=> "-I../Encode",
32
              INC		=> "-isystem../Encode",
33
          NAME		=> 'Encode::'.$name,
33
          NAME		=> 'Encode::'.$name,
34
          VERSION_FROM	=> "$name.pm",
34
          VERSION_FROM	=> "$name.pm",
35
          OBJECT		=> '$(O_FILES)',
35
          OBJECT		=> '$(O_FILES)',
(-)a/EBCDIC/Makefile.PL (-1 / +1 lines)
Lines 11-17 my %tables = ( Link Here
11
          );
11
          );
12
12
13
WriteMakefile(
13
WriteMakefile(
14
              INC		=> "-I../Encode",
14
              INC		=> "-isystem../Encode",
15
          NAME		=> 'Encode::'.$name,
15
          NAME		=> 'Encode::'.$name,
16
          VERSION_FROM	=> "$name.pm",
16
          VERSION_FROM	=> "$name.pm",
17
          OBJECT		=> '$(O_FILES)',
17
          OBJECT		=> '$(O_FILES)',
(-)a/JP/Makefile.PL (-1 / +1 lines)
Lines 30-36 unless ($ENV{AGGREGATE_TABLES}){ Link Here
30
my $name = 'JP';
30
my $name = 'JP';
31
31
32
WriteMakefile(
32
WriteMakefile(
33
              INC		=> "-I../Encode",
33
              INC		=> "-isystem../Encode",
34
          NAME		=> 'Encode::'.$name,
34
          NAME		=> 'Encode::'.$name,
35
          VERSION_FROM	=> "$name.pm",
35
          VERSION_FROM	=> "$name.pm",
36
          OBJECT		=> '$(O_FILES)',
36
          OBJECT		=> '$(O_FILES)',
(-)a/KR/Makefile.PL (-1 / +1 lines)
Lines 28-34 unless ($ENV{AGGREGATE_TABLES}){ Link Here
28
my $name = 'KR';
28
my $name = 'KR';
29
29
30
WriteMakefile(
30
WriteMakefile(
31
              INC		=> "-I../Encode",
31
              INC		=> "-isystem../Encode",
32
          NAME		=> 'Encode::'.$name,
32
          NAME		=> 'Encode::'.$name,
33
          VERSION_FROM	=> "$name.pm",
33
          VERSION_FROM	=> "$name.pm",
34
          OBJECT		=> '$(O_FILES)',
34
          OBJECT		=> '$(O_FILES)',
(-)a/Makefile.PL (-2 / +2 lines)
Lines 20-26 if (!$ENV{PERL_CORE}) { Link Here
20
    $gccver =~ s/\.//g; $gccver =~ s/ .*//;
20
    $gccver =~ s/\.//g; $gccver =~ s/ .*//;
21
    $gccver .= "0" while length $gccver < 3;
21
    $gccver .= "0" while length $gccver < 3;
22
    $gccver = 0+$gccver;
22
    $gccver = 0+$gccver;
23
    $ccflags .= ' -Werror=declaration-after-statement' if $gccver > 412;
23
    #$ccflags .= ' -Werror=declaration-after-statement' if $gccver > 412;
24
    $ccflags .= ' -Wpointer-sign' if !$Config{d_cplusplus} and $gccver > 400;
24
    $ccflags .= ' -Wpointer-sign' if !$Config{d_cplusplus} and $gccver > 400;
25
    $ccflags .= ' -fpermissive' if $Config{d_cplusplus};
25
    $ccflags .= ' -fpermissive' if $Config{d_cplusplus};
26
  }
26
  }
Lines 62-68 WriteMakefile( Link Here
62
        DIST_DEFAULT => 'all tardist',
62
        DIST_DEFAULT => 'all tardist',
63
    },
63
    },
64
    CCFLAGS     => $ccflags,
64
    CCFLAGS     => $ccflags,
65
    INC         => '-I' . File::Spec->catfile( '.', 'Encode' ),
65
    INC         => '-isystem' . File::Spec->catfile( '.', 'Encode' ),
66
    LICENSE     => 'perl',
66
    LICENSE     => 'perl',
67
    PREREQ_PM   => {
67
    PREREQ_PM   => {
68
        Exporter   => '5.57',   # use Exporter 'import';
68
        Exporter   => '5.57',   # use Exporter 'import';
(-)a/Symbol/Makefile.PL (-1 / +1 lines)
Lines 16-22 my %tables = ( Link Here
16
          );
16
          );
17
17
18
WriteMakefile(
18
WriteMakefile(
19
              INC		=> "-I../Encode",
19
              INC		=> "-isystem../Encode",
20
          NAME		=> 'Encode::'.$name,
20
          NAME		=> 'Encode::'.$name,
21
          VERSION_FROM	=> "$name.pm",
21
          VERSION_FROM	=> "$name.pm",
22
          OBJECT		=> '$(O_FILES)',
22
          OBJECT		=> '$(O_FILES)',
(-)a/TW/Makefile.PL (-1 / +1 lines)
Lines 26-32 unless ($ENV{AGGREGATE_TABLES}){ Link Here
26
my $name = 'TW';
26
my $name = 'TW';
27
27
28
WriteMakefile(
28
WriteMakefile(
29
              INC		=> "-I../Encode",
29
              INC		=> "-isystem../Encode",
30
          NAME		=> 'Encode::'.$name,
30
          NAME		=> 'Encode::'.$name,
31
          VERSION_FROM	=> "$name.pm",
31
          VERSION_FROM	=> "$name.pm",
32
          OBJECT		=> '$(O_FILES)',
32
          OBJECT		=> '$(O_FILES)',
(-)a/Unicode/Makefile.PL (-1 / +1 lines)
Lines 3-9 use strict; Link Here
3
use ExtUtils::MakeMaker;
3
use ExtUtils::MakeMaker;
4
4
5
WriteMakefile(
5
WriteMakefile(
6
          INC		=> "-I../Encode",
6
          INC		=> "-isystem../Encode",
7
          NAME		=> 'Encode::Unicode',
7
          NAME		=> 'Encode::Unicode',
8
          VERSION_FROM	=> "Unicode.pm",
8
          VERSION_FROM	=> "Unicode.pm",
9
          MAN3PODS  => {},
9
          MAN3PODS  => {},

Return to bug 886507