diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2000-11-19 18:57:30 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2000-11-19 18:57:30 +0000 |
commit | 8fada4f68b93131e799325ac5c6f8a949351407d (patch) | |
tree | 7f82cd8c73e74fbef376531523b5a29920b4a6dd /ext | |
parent | 95c70f2077ea14f8e2426dbcac9828b259a86bf2 (diff) | |
download | perl-8fada4f68b93131e799325ac5c6f8a949351407d.tar.gz |
Configure GCC/Win32 build -Duseperlio
Fix a couple of gross issues
- double-include of ../deb.o in re.dll
- win32sck.c needs PerlIO and FILE
p4raw-id: //depot/perlio@7752
Diffstat (limited to 'ext')
-rw-r--r-- | ext/re/hints/MSWin32.pl | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/re/hints/MSWin32.pl b/ext/re/hints/MSWin32.pl index 3ac0fdac4c..858e5f9032 100644 --- a/ext/re/hints/MSWin32.pl +++ b/ext/re/hints/MSWin32.pl @@ -7,12 +7,3 @@ if ($^O =~ /MSWin32/) { $self->{OBJECT} .= ' ../../deb$(OBJ_EXT)';
}
-# Add explicit link to deb.o to pick up _Perl_deb symbol which is not
-# mentioned in perl56.lib in non DEBUGGING builds
-# Taken lock, stock, and barrel from hints/aix.pl
-# -- BKS, 11-11-2000
-
-if ($^O =~ /MSWin32/) {
- $self->{OBJECT} .= ' ../../deb$(OBJ_EXT)';
-}
-
|