Update of /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Constants/hash
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12378/Win32-GUI-Constants/hash
Modified Files:
Makefile.PL
Log Message:
Fix cygwin and mingw builds
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Constants/hash/Makefile.PL,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile.PL 13 May 2006 15:39:30 -0000 1.1
--- Makefile.PL 11 Jun 2006 21:00:15 -0000 1.2
***************
*** 16,21 ****
open my $fh, '>', $file or die "Failed to open $file for writing: $!";
! END { close $fh; }
! select $fh;
# Generic configuration
--- 16,20 ----
open my $fh, '>', $file or die "Failed to open $file for writing: $!";
! my $oldfh = select $fh;
# Generic configuration
***************
*** 65,75 ****
# DEPENDENCIES
! lookupa.o : lookupa.c standard.h lookupa.h
! recycle.o : recycle.c standard.h recycle.h
! perfhex.o : perfhex.c standard.h lookupa.h recycle.h perfect.h
! perfect.o : perfect.c standard.h lookupa.h recycle.h perfect.h
MAKEFILE
--- 64,77 ----
# DEPENDENCIES
! lookupa.$Config{obj_ext} : lookupa.c standard.h lookupa.h
! recycle.$Config{obj_ext} : recycle.c standard.h recycle.h
! perfhex.$Config{obj_ext} : perfhex.c standard.h lookupa.h recycle.h perfect.h
! perfect.$Config{obj_ext} : perfect.c standard.h lookupa.h recycle.h perfect.h
MAKEFILE
+
+ select $oldfh;
+ close $fh;
|