From: Dmitry K. <in...@us...> - 2008-10-01 11:10:28
|
Update of /cvsroot/winguitest/Win32-GuiTest/lib/Win32 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv20994/lib/Win32 Modified Files: GuiTest.pm Log Message: - incorporate minor changes accumulated in 1.54 @ CPAN Index: GuiTest.pm =================================================================== RCS file: /cvsroot/winguitest/Win32-GuiTest/lib/Win32/GuiTest.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GuiTest.pm 15 Dec 2007 21:43:45 -0000 1.3 --- GuiTest.pm 1 Oct 2008 11:10:12 -0000 1.4 *************** *** 95,99 **** require Exporter; require DynaLoader; - require AutoLoader; @ISA = qw(Exporter DynaLoader); --- 95,98 ---- *************** *** 646,650 **** my $oo_mode = 0; # Object oriented mode ! if( $_[ 0 ] eq "Win32::GuiTest" ) # Object { shift(@_); --- 645,649 ---- my $oo_mode = 0; # Object oriented mode ! if( defined($_[0]) and $_[ 0 ] eq "Win32::GuiTest" ) # Object { shift(@_); *************** *** 656,660 **** $maxlevel = $arg{ '-maxlevel' }; $oo_mode = 1; ! }elsif( ref( $_[ 0 ] eq "Win32::GuiTest::Window" ) ) # Object { shift(@_); --- 655,659 ---- $maxlevel = $arg{ '-maxlevel' }; $oo_mode = 1; ! }elsif( defined($_[0]) and ref( $_[ 0 ] eq "Win32::GuiTest::Window" ) ) # Object { shift(@_); *************** *** 1694,1701 **** - # Preloaded methods go here. - - # Autoload methods go after =cut, and are processed by the autosplit program. - package Win32::GuiTest::Window; --- 1693,1696 ---- *************** *** 1767,1770 **** --- 1762,1775 ---- See more detailed explanations here http://sourceforge.net/projects/winguitest/ + =head2 cygwin + + g++ needs to be installed + + perl Makefile.PL + make + make test + make install + + =head2 MSVC environment To setup a development environment for compiling the C++ code you can either buy |