Changeset 5694
- Timestamp:
- 07/19/05 15:21:14 (3 years ago)
- svk:copy_cache_prev:
- 7696
- Files:
-
- 2 modified
-
INSTALL (modified) (1 diff)
-
Makefile.PL (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r5577 r5694 87 87 make profiled 88 88 89 CAVEATS FOR Win32 USERS 90 ------------------------- 89 91 92 Embedding Perl5 is disabled GHC is built with MinGW/GCC and Perl 93 is usually built with VC++, they cannot embed one another. 94 90 95 CAVEATS FOR GCC 4.0 USERS 91 96 ------------------------- -
Makefile.PL
r5680 r5694 148 148 my $ccdlflags = ""; 149 149 150 if ($ENV{PUGS_EMBED} and $ENV{PUGS_EMBED} =~ /\bperl5\b/i ){150 if ($ENV{PUGS_EMBED} and $ENV{PUGS_EMBED} =~ /\bperl5\b/i and !($Config{cc} eq 'cl') ) { 151 151 push @prereqs, "src/perl5/perl5.o"; 152 152 $ghc_output .= " src/perl5/perl5.o "; … … 158 158 for split /\s+/, $flags; 159 159 } 160 } 161 elsif( $Config{cc} eq 'cl' and $^O =~ /Win32/ ) { 162 $ENV{PUGS_EMBED} =~ s/\bperl5\b//g; 163 warn << '.' 164 *** Perl 5 embedding disabled on Win32 systems. 165 . 160 166 } 161 167 else {
