diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-01-13 02:46:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-01-13 02:46:53 +0000 |
commit | d07c2202867c84a305417e42e522ca39d055c62a (patch) | |
tree | 61abe56eb09e388c565e410cebc8a0d7778ffd11 /win32/config_sh.PL | |
parent | 2fd1c6b8c969281de42d3830c930f0cea98c16de (diff) | |
download | perl-d07c2202867c84a305417e42e522ca39d055c62a.tar.gz |
[win32] various tweaks to build support (NOTE: meant for 5.004_57)
- build and install x2p
- fix installperl warnings on win32
- `make install` now does puts the archlibs in right places
- makefiles don't default to USE_THREADS anymore
- sync config.{b,g,v}c
- sync makefile.mk -> Makefile
p4raw-id: //depot/win32/perl@416
Diffstat (limited to 'win32/config_sh.PL')
-rw-r--r-- | win32/config_sh.PL | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/win32/config_sh.PL b/win32/config_sh.PL index 5f3f157a0c..0c3713cb2e 100644 --- a/win32/config_sh.PL +++ b/win32/config_sh.PL @@ -5,17 +5,6 @@ while (@ARGV && $ARGV[0] =~ /^([\w_]+)=(.*)$/) shift(@ARGV); } -$opt{'archname'} = 'MSWin32'; -if (defined $ENV{'PROCESSOR_ARCHITECTURE'}) - { - $opt{'archname'} .= '-'.$ENV{'PROCESSOR_ARCHITECTURE'}; - } - -if ($opt{'ccflags'} =~ /USE_THREADS/) - { - $opt{'archname'} .= '-thread'; - } - if ($] =~ /\.(\d\d\d)?(\d\d)?$/) { # should always be true $opt{PATCHLEVEL} = int($1 || 0); $opt{SUBVERSION} = $2 || '00'; |