You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
(7) |
Mar
(5) |
Apr
(4) |
May
(15) |
Jun
(10) |
Jul
(4) |
Aug
(12) |
Sep
(39) |
Oct
(22) |
Nov
(46) |
Dec
(65) |
2002 |
Jan
(19) |
Feb
(27) |
Mar
(50) |
Apr
(73) |
May
(85) |
Jun
(52) |
Jul
(49) |
Aug
(95) |
Sep
(152) |
Oct
(81) |
Nov
(42) |
Dec
(62) |
2003 |
Jan
(45) |
Feb
(47) |
Mar
(101) |
Apr
(110) |
May
(53) |
Jun
(72) |
Jul
(125) |
Aug
(77) |
Sep
(87) |
Oct
(69) |
Nov
(55) |
Dec
(71) |
2004 |
Jan
(127) |
Feb
(68) |
Mar
(93) |
Apr
(102) |
May
(64) |
Jun
(92) |
Jul
(40) |
Aug
(113) |
Sep
(44) |
Oct
(61) |
Nov
(44) |
Dec
(100) |
2005 |
Jan
(57) |
Feb
(51) |
Mar
(101) |
Apr
(73) |
May
(45) |
Jun
(97) |
Jul
(92) |
Aug
(94) |
Sep
(46) |
Oct
(83) |
Nov
(82) |
Dec
(68) |
2006 |
Jan
(92) |
Feb
(116) |
Mar
(84) |
Apr
(66) |
May
(40) |
Jun
(57) |
Jul
(89) |
Aug
(82) |
Sep
(58) |
Oct
(94) |
Nov
(104) |
Dec
(70) |
2007 |
Jan
(86) |
Feb
(108) |
Mar
(193) |
Apr
(84) |
May
(71) |
Jun
(54) |
Jul
(17) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mattia B. <mb...@ds...> - 2002-05-21 06:56:49
|
On Mon, 20 May 2002, Marcus wrote: >>>In the archives I only found references to wxStyledText..., based on >>>Scintilla. > >>I think this is what wxDesigner uses. > >Is it possible to use it from Perl? >I can't find StyledText in the manual. Is it a contrib somewhere? It is in contrib, and not wrapped (yet); no plans to wrap it soon, neither. Any volunteers? Regards Mattia |
From: Graciliano M. P. \(V. Sites\) <gm...@vi...> - 2002-05-21 03:19:42
|
I'm using a event size to organize my objects in the frame. But the EVT_SIZE only work if I define it for one object. If I try more then 1 it doesn't work! :/ Sample: ... use Wx::Event qw(EVT_SIZE) ; EVT_SIZE( $obj , sub { &My_obj_config($obj, $pos , $size) } ) ; ... |
From: Marcus <li...@wo...> - 2002-05-20 21:04:43
|
>>In the archives I only found references to wxStyledText..., based on >>Scintilla. >I think this is what wxDesigner uses. Is it possible to use it from Perl? I can't find StyledText in the manual. Is it a contrib somewhere? Marcus |
From: Shannon <aqu...@am...> - 2002-05-20 09:09:22
|
> > >Well, the only thing I know about FreeBSD is that 0.07 ( IIRC ) compiled >fine once wxGTK was recompiled with --disable-threads . The only >reference I have is http://testers.cpan.org/ -> search for Wx -> >look at success reports. > >HTH >Mattia > >P.S.: thanks for the details. > > You're welcome, here's a few more details for you :) I went to testers.cpan.org and the only thing I found on Wx was that someone had successfully compiled 0.08, so I did the following: I re-compiled wxGTK without threads (ass suggested by the tester) and then did 'perl Makefile.PL, make, make test' with wxPerl 0.08. I get the same errors as before. The make portion goes OK, but 'make test' generated the "test program seems to have generated a core after all subtests completed successfully' for all five (four in 0.08) tests. If I go ahead and do 'make install', any PERL programs I write with 'use Wx' crash on exit. The only thing that has changed is that the sample program "controls.pl" which used to segfault as soon as it was run now segfaults when I close the window, just like the other programs. Does this sound like a problem with my wxGTK installation or something with wxPerl? I really like the looks of wxPerl and I want to use it, but I need to solve this problem first. I've now tried wxGTK-2.2.9 with and without threads and wxPerl-0.10 and -0.08. I have done all the install combinations several times. I tried both make and gmake just for the hell of it, but it made no difference. Thanks, Shannon |
From: Mattia B. <mb...@ds...> - 2002-05-20 07:14:53
|
On Sun, 19 May 2002, Shannon wrote: >Hi, > I am having a problem with Wx generating segmentation faults. I have >tried everything from small, custom-built PERL apps to copying and >pasting the sample programs straight off the tutorial pages. Every >single program generates a segmentation fault on exit. > > I installed the newest stable releases of both wxGTK and wxPerl, >myself. I also tried installing wxGTK from the FreeBSD ports collection >(my system is FreeBSD 4.5-stable, i386). > > I cleaned everything out and went so far as to reinstall PERL on my >system. Nothing helps. When installing from source, I get these errors >during "make test": > >t/1_load... dubious > Test returned status 0 (wstat 139, 0x8b) > test program seems to have generated a core > after all subtests completed successfully.t/2_inheritance... dubious > > Test returned status 0 (wstat 139, 0x8b) > test program seems to have generated a core > after all subtests completed successfully. > >[...] > >Failed 5/5 test scripts, 0.00% okay. 0/132 subtests failed, 100.00% okay. > > > >I have exhausted Google and Altavista on this one, so I am getting a bit >desperate. I hope I haven't overlooked something obvious or just missed >a FAQ question, but I don't think that's the case. > >Final notes: I haven't tried anything complicated, but the simple test >programs all seem to execute OK, except for the segmentation fault on >exit. Also, all of my other PERL programs and libraries seem to work >fine, so I am pretty sure the problem doesn't lay in that direction. >"use Wx" seems to be the magic segfault command. Well, the only thing I know about FreeBSD is that 0.07 ( IIRC ) compiled fine once wxGTK was recompiled with --disable-threads . The only reference I have is http://testers.cpan.org/ -> search for Wx -> look at success reports. HTH Mattia P.S.: thanks for the details. |
From: Mattia B. <mb...@ds...> - 2002-05-20 07:06:00
|
On Sun, 19 May 2002, Marcus wrote: >Since there's no HTML editor on the horizon, is it possible to do >syntax-highlighting? (wxDesigner does it) >So that users could be helped visually while editing HTML. > >In the archives I only found references to wxStyledText..., based on >Scintilla. I think this is what wxDesigner uses. >Any other suggestions on HTML editing are also welcome. Regards Mattia |
From: Marco T. <wx...@so...> - 2002-05-19 19:44:25
|
hello, what i describe below appears on: Wx-0.11b5-wxmsw2.3.3-win32.zip Wx-0.11b4-wxmsw2.3.3-win32.zip (not tested older betas) but not in: Wx-0.10-wxmsw2.2.9-win32-1.zip -> everything tested on win98 special listitem's aren't handled properly. with special i mean item's with a bold font, with a text colour or with a background colour. (report view - don't know about other styles) changing listctrl.pl you can reproduce this: sub OnDeleteAll { my ($this, $event) = @_; my $item = $this->{LISTCTRL}->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); $this->{LISTCTRL}->DeleteItem($item); } the problem occurs if you delete an item above the special ones. if you do this, the first special formatted item looses its formation. the ones below are handled right. if you resize the window now, the formations rebuilt themselves at the place they where at the beginning! example: ### before ### item1 item2 item3 -> this one is bold item4 item5 -> this one has a green font item6 ### state after deleting item1 ### item2 item3 item4 item5 -> this one has a green font item6 ### after resizing the window ### item2 item3 item4 -> this one is bold item5 item6 -> this one has a green font this is really strainge and i hope i described it usuable. any ideas? please not again a win98 bug! no, can't be -> works in the nonbeta! horrai! greeting Marco |
From: Marcus <li...@wo...> - 2002-05-19 19:03:03
|
Since there's no HTML editor on the horizon, is it possible to do syntax-highlighting? (wxDesigner does it) So that users could be helped visually while editing HTML. In the archives I only found references to wxStyledText..., based on Scintilla. Any other suggestions on HTML editing are also welcome. Marcus |
From: Shannon <aqu...@am...> - 2002-05-19 10:03:49
|
Hi, I am having a problem with Wx generating segmentation faults. I have tried everything from small, custom-built PERL apps to copying and pasting the sample programs straight off the tutorial pages. Every single program generates a segmentation fault on exit. I installed the newest stable releases of both wxGTK and wxPerl, myself. I also tried installing wxGTK from the FreeBSD ports collection (my system is FreeBSD 4.5-stable, i386). I cleaned everything out and went so far as to reinstall PERL on my system. Nothing helps. When installing from source, I get these errors during "make test": t/1_load... dubious Test returned status 0 (wstat 139, 0x8b) test program seems to have generated a core after all subtests completed successfully.t/2_inheritance... dubious Test returned status 0 (wstat 139, 0x8b) test program seems to have generated a core after all subtests completed successfully. [...] Failed 5/5 test scripts, 0.00% okay. 0/132 subtests failed, 100.00% okay. I have exhausted Google and Altavista on this one, so I am getting a bit desperate. I hope I haven't overlooked something obvious or just missed a FAQ question, but I don't think that's the case. Final notes: I haven't tried anything complicated, but the simple test programs all seem to execute OK, except for the segmentation fault on exit. Also, all of my other PERL programs and libraries seem to work fine, so I am pretty sure the problem doesn't lay in that direction. "use Wx" seems to be the magic segfault command. Thanks, Shannon |
From: DH <cra...@ya...> - 2002-05-17 07:58:52
|
Hello. Can you please export wxID_HIGHEST and wxID_LOWEST I was reading the event-handling overview (Wx manual) and it said > The following standard identifiers are supplied. > You can use wxID_HIGHEST to determine the number above which > it is safe to define your own identifiers. > Or, you can use identifiers below wxID_LOWEST. It'd be nice of you could export wxID_HIGHEST and wxID_LOWEST if it is possible ( since i'm not sure in which version of Wx appeared) Thanks __________________________________________________ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com |
From: Mattia B. <mb...@ds...> - 2002-05-17 06:46:34
|
On Thu, 16 May 2002, Marcus wrote: >I looked at the C++ RichEdit example, and it seemed very much a work in >progress. What I'd like to do is a WYSIWYG HTML editor, because my ^^^^^^^ Stalled & broken. Unusable. >application is using wxHTML. Is that currently possible? No, if interested in the details, look at wx-users & wx-dev archives. ( many volunteered, no one affectively did anything ). Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-05-17 06:44:51
|
On Thu, 16 May 2002, Marcus wrote: >Does anybody know how to get the handle of the Perl/DOS window from >which the wx application is launched? >The goal is to hide the inevitable DOS window which pops up. Why not launching the app with wPerl, instead on Perl? >In Win32::GUI there is a command: > >## Hide the DOS Window >my ($DOS) = Win32::GUI::GetPerlWindow(); >Win32::GUI::Hide($DOS); > >Is there a way in wxPerl? I could add it, but, to be honest, I don't think it is needed ( see above ). Regards Mattia |
From: Graciliano M. P. \(V. Sites\) <gm...@vi...> - 2002-05-17 02:09:53
|
If you are using ActivePerl try to run your app using the wPerl.exe in = the bin directory, and no window for pipe will be open. Other version of = Perl for Win32 still have the wperl file too. Graciliano M. P. > Subject: [wxperl-users] Getting the Perl - DOS window >=20 > Does anybody know how to get the handle of the Perl/DOS window from > which the wx application is launched? > The goal is to hide the inevitable DOS window which pops up. >=20 > In Win32::GUI there is a command: >=20 > ## Hide the DOS Window > my ($DOS) =3D Win32::GUI::GetPerlWindow(); > Win32::GUI::Hide($DOS); >=20 > Is there a way in wxPerl? >=20 > Thanks, >=20 > Marcus >=20 >=20 |
From: Marcus <li...@wo...> - 2002-05-16 17:45:26
|
I looked at the C++ RichEdit example, and it seemed very much a work in progress. What I'd like to do is a WYSIWYG HTML editor, because my application is using wxHTML. Is that currently possible? Thanks, Marcus |
From: Marcus <li...@wo...> - 2002-05-16 17:31:23
|
Does anybody know how to get the handle of the Perl/DOS window from which the wx application is launched? The goal is to hide the inevitable DOS window which pops up. In Win32::GUI there is a command: ## Hide the DOS Window my ($DOS) = Win32::GUI::GetPerlWindow(); Win32::GUI::Hide($DOS); Is there a way in wxPerl? Thanks, Marcus |
From: Mattia B. <mb...@ds...> - 2002-05-16 06:58:04
|
On Thu, 16 May 2002, James Lavery wrote: >Hi Mattia, >Having been sidetracked for some time, I'm about to get on with a serious >wxPerl/wxWindows application. Before starting, can you tell me the latest >stable and compatible versions of wxPerl and wxWindows, please? wxPerl 0.10 & wxWindows 2.2.9; there are binary releases for Win32 & Linux ( RPM & DEB ) >A few months ago, we were discussing Perl validators - has anyone made >progress on this? If not, I'm happy to develop pure Perl validators as part >of my development. Let me know what you think. No one did it, so I'll be glad if you can do it. Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-05-16 06:53:39
|
On Wed, 15 May 2002, Dave Roe wrote: >ok, using information found at >http://duke.usask.ca/~dalglb/macosx/Perl_5.6.html, I was able to compile >perl-5.6.1. > >the following appears to be the relevant part of the Python.app compile: > >cc -framework System -framework Python -framework Carbon -framework >Foundation ../../Mac/Python/macmain.o ../../Mac/Python/macgetargv.o -o >pythonforbundle > >I now have to find the relevant part of the perl compile to put these >compiler options on, right? > >this looks like it could be it: > >env LD_RUN_PATH=/System/Library/Perl/darwin/CORE >DYLD_LIBRARY_PATH=/Users/dave/Desktop/perl-5.6.1 cc -o perl >-flat_namespace -L/usr/local/lib perlmain.o Correct, but I think the most important part is the part done by Mac/OSX/Makefile; when it creates a directory named Python.App ( IIRC ), and copies some icons/resources/things into it. Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-05-16 06:48:23
|
On Wed, 15 May 2002, Dave Roe wrote: >my problem is most likely one of case-sensitivity. after running >"Configure", I have no Makefile. this is because OS X does _not_ >distinguish between "Makefile" and "makefile" yet the shell scripts use >both names as part of the process. I have to find a way of changing one >of them. Well, I don't know anything about OS X, but I know people are routinely compiling the snapshots under OS X, so if you can afford the download, it may be worth trying; I think whatever problems there are with case injsensitivity may be addressed in the developement branch, so you don't need to change shell scripts & co. Regards Mattia |
From: James L. <jl...@bi...> - 2002-05-16 05:51:21
|
Hi Mattia, Having been sidetracked for some time, I'm about to get on with a serious wxPerl/wxWindows application. Before starting, can you tell me the latest stable and compatible versions of wxPerl and wxWindows, please? A few months ago, we were discussing Perl validators - has anyone made progress on this? If not, I'm happy to develop pure Perl validators as part of my development. Let me know what you think. Regards, James |
From: Dave R. <dav...@ma...> - 2002-05-15 23:14:24
|
I was able to compile a perlforbundle binary using the -framework compiler options, but I imagine it's just the tip of the iceberg. the resulting binary appears no different from the perl binary. I'd imagine I have to pick a whole bunch of framework libraries to link against instead of the current LDLIBRARY value. any pointers? /dave On Wednesday, May 15, 2002, at 03:24 , Dave Roe wrote: > ok, using information found at > http://duke.usask.ca/~dalglb/macosx/Perl_5.6.html, I was able to > compile perl-5.6.1. > > the following appears to be the relevant part of the Python.app compile: > > cc -framework System -framework Python -framework Carbon -framework > Foundation ../../Mac/Python/macmain.o ../../Mac/Python/macgetargv.o -o > pythonforbundle > > I now have to find the relevant part of the perl compile to put these > compiler options on, right? > > this looks like it could be it: > > env LD_RUN_PATH=/System/Library/Perl/darwin/CORE > DYLD_LIBRARY_PATH=/Users/dave/Desktop/perl-5.6.1 cc -o perl > -flat_namespace -L/usr/local/lib perlmain.o > > more later, > /dave > > > _______________________________________________________________ > > Have big pipes? SourceForge.net is looking for download mirrors. We > supply > the hardware. You get the recognition. Email Us: > ban...@so... > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users > > -------------------------------- 8< -------------------------------- pls note - new contact details: email: dav...@ma... phone: (650) 906 3497 dav...@em... is still a valid email address |
From: Dave R. <dav...@ma...> - 2002-05-15 22:24:41
|
ok, using information found at http://duke.usask.ca/~dalglb/macosx/Perl_5.6.html, I was able to compile perl-5.6.1. the following appears to be the relevant part of the Python.app compile: cc -framework System -framework Python -framework Carbon -framework Foundation ../../Mac/Python/macmain.o ../../Mac/Python/macgetargv.o -o pythonforbundle I now have to find the relevant part of the perl compile to put these compiler options on, right? this looks like it could be it: env LD_RUN_PATH=/System/Library/Perl/darwin/CORE DYLD_LIBRARY_PATH=/Users/dave/Desktop/perl-5.6.1 cc -o perl -flat_namespace -L/usr/local/lib perlmain.o more later, /dave |
From: Dave R. <dav...@ma...> - 2002-05-15 20:00:16
|
my problem is most likely one of case-sensitivity. after running "Configure", I have no Makefile. this is because OS X does _not_ distinguish between "Makefile" and "makefile" yet the shell scripts use both names as part of the process. I have to find a way of changing one of them. /dave On Wednesday, May 15, 2002, at 12:45 , Mattia Barbon wrote: >> ok, I've read the mailing list and have compiled Python.app as >> described. I saw the tail of the output, and planned to make such >> modifications to the Perl compilation, but right now I'm having >> problems >> getting Perl to compile at all under OS X. it's late, so I'll have >> another go tomorrow, but I'm concerned that this may prove problematic. >> the fact is, OS X comes with Perl 5.6.0, so few people perhaps will >> have >> bothered to re-compile Perl. we'll see... > You may try the developement branch, available via rsync ( perldoc > perlhack > for more information ), or there are snapshots > http://www.iki.fi/jhi/pe...@16...z > http://www.iki.fi/jhi/perl@16611.tbz > > ftp://ftp.funet.fi/pub/languages/perl/snap/pe...@16...z > ftp://ftp.funet.fi/pub/languages/perl/snap/perl@16611.tbz > > It should work OOTB on OS X, and AFAICS it is reasonably stable > > Regards > Mattia > > _______________________________________________________________ > > Have big pipes? SourceForge.net is looking for download mirrors. We > supply > the hardware. You get the recognition. Email Us: > ban...@so... > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users > > -------------------------------- 8< -------------------------------- pls note - new contact details: email: dav...@ma... phone: (650) 906 3497 dav...@em... is still a valid email address |
From: Mattia B. <mb...@ds...> - 2002-05-15 19:47:06
|
> ok, I've read the mailing list and have compiled Python.app as > described. I saw the tail of the output, and planned to make such > modifications to the Perl compilation, but right now I'm having problems > getting Perl to compile at all under OS X. it's late, so I'll have > another go tomorrow, but I'm concerned that this may prove problematic. > the fact is, OS X comes with Perl 5.6.0, so few people perhaps will have > bothered to re-compile Perl. we'll see... You may try the developement branch, available via rsync ( perldoc perlhack for more information ), or there are snapshots http://www.iki.fi/jhi/pe...@16...z http://www.iki.fi/jhi/perl@16611.tbz ftp://ftp.funet.fi/pub/languages/perl/snap/pe...@16...z ftp://ftp.funet.fi/pub/languages/perl/snap/perl@16611.tbz It should work OOTB on OS X, and AFAICS it is reasonably stable Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-05-15 19:47:06
|
> Worked like a charm my man. Thanks > > I don't understand, I'm new to Perl (on windows, compiled/used a fair amount > on *nix). I understand all you need to M$ C compiler to compile perl on FYI: perl can be compiled both with MinGW ( www.mingw.org, it's free ) and Borland C ( there is a free version for download ). > windows. But I thought you had to use activestate if you wanted ppm. What > is your repository? Regards Mattia |
From: Jay S. <me...@he...> - 2002-05-15 16:26:03
|
Worked like a charm my man. Thanks I don't understand, I'm new to Perl (on windows, compiled/used a fair amount on *nix). I understand all you need to M$ C compiler to compile perl on windows. But I thought you had to use activestate if you wanted ppm. What is your repository? Thanks Jay ----- Original Message ----- From: "DH" <cra...@ya...> To: "Jay Strauss" <me...@he...> Cc: "wxPerl Users" <wxp...@li...> Sent: Wednesday, May 15, 2002 11:03 AM Subject: Re: [wxperl-users] Activestate and WxPerl > I don't think so. > ActivePerl's PPM has on occasion had the brilliance to not know WTF it is > comparing when checking operating systems etc... > > I've had this happen, so just extract the ppm package > and then run (while cd'ing to the directory with the blib directory in it) > > #!/usr/bin/perl -w > use Cwd; > use strict; > use Config; > use ExtUtils::Install; > > use ActivePerl::DocTools; > my %current_package; > ############################################################################ ############## > $current_package{'NAME'} = 'Wx'; > ############################################################################ ############## > my $inst_archlib = $Config{installsitearch}; > my $inst_root = $Config{prefix}; > my $packlist = MM->catfile("$Config{installsitearch}/auto", > split(/-/, $current_package{'NAME'}), ".packlist"); > > # copied from ExtUtils::Install > my $INST_LIB = MM->catdir(MM->curdir,"blib","lib"); > my $INST_ARCHLIB = MM->catdir(MM->curdir,"blib","arch"); > my $INST_BIN = MM->catdir(MM->curdir,'blib','bin'); > my $INST_SCRIPT = MM->catdir(MM->curdir,'blib','script'); > my $INST_MAN1DIR = MM->catdir(MM->curdir,'blib','man1'); > my $INST_MAN3DIR = MM->catdir(MM->curdir,'blib','man3'); > my $INST_HTMLDIR = MM->catdir(MM->curdir,'blib','html'); > my $INST_HTMLHELPDIR = MM->catdir(MM->curdir,'blib','htmlhelp'); > > my $inst_script = $Config{installscript}; > my $inst_man1dir = $Config{installman1dir}; > my $inst_man3dir = $Config{installman3dir}; > my $inst_bin = $Config{installbin}; > my $inst_htmldir = $Config{installhtmldir}; > my $inst_htmlhelpdir = $Config{installhtmlhelpdir}; > my $inst_lib = $Config{installsitelib}; > > while (1) { > my $cwd = getcwd(); > $cwd .= "/" if $cwd =~ /[a-z]:$/i; > eval { > ExtUtils::Install::install({ > "read" => $packlist, "write" => $packlist, > $INST_LIB => $inst_lib, $INST_ARCHLIB => $inst_archlib, > $INST_BIN => $inst_bin, $INST_SCRIPT => $inst_script, > $INST_MAN1DIR => $inst_man1dir, $INST_MAN3DIR => $inst_man3dir, > $INST_HTMLDIR => $inst_htmldir, > $INST_HTMLHELPDIR => $inst_htmlhelpdir},0,0,0); > }; > # install might have croaked in another directory > chdir($cwd); > # Can't remove some DLLs, but we can rename them and try again. > if ($@ && $@ =~ /Cannot forceunlink (\S+)/) { > my $oldname = $1; > $oldname =~ s/:$//; > my $newname = $oldname . "." . time(); > unless (rename($oldname, $newname)) { > return 0; > } > } > # Some other error > elsif($@) { > return 0; > } > else { last; } > } > > > If you want the latest binary version of perl, try > my PPM package repository > > http://crazyinsomniac.perlmonk.org/perl/ppm > > It has perl 5.7.3. BTW - I also take requests > ( but not for Wx, cause Mattia is kind enough to provide those already ) > > > --- Jay Strauss <me...@he...> wrote: > > Hi, > > > > <I've read through the archives first, before posting> > > > > I just installed Activestate (v5.6.1, below is the output of perl -V). Then > > following the readme (I untarred/unzipped to d:\data\download\wxperl). I > > tried to install and I'm getting: > > > > D:\Data\Download\WXPerl>ppm install --location=. Wx > > Installing package 'Wx'... > > Error installing package 'Wx': Read a PPD for 'Wx', but it is not intended > > for this build of Perl (MSWin32-x86-multi-thread) > > > > 2 questions: > > 1) suggestion on fixing the above? > > 2) Do I need to install WxWindows in addition to WxPerl (I think so)? any > > howtos or pointer you could give me? > > > > Thanks > > Jay > > > > > > > > > > C:\>perl -V > > Summary of my perl5 (revision 5 version 6 subversion 1) configuration: > > Platform: > > osname=MSWin32, osvers=4.0, archname=MSWin32-x86-multi-thread > > uname='' > > config_args='undef' > > hint=recommended, useposix=true, d_sigaction=undef > > usethreads=undef use5005threads=undef useithreads=define > > usemultiplicity=def > > ine > > useperlio=undef d_sfio=undef uselargefiles=undef usesocks=undef > > use64bitint=undef use64bitall=undef uselongdouble=undef > > Compiler: > > cc='cl', ccflags > > ='-nologo -O1 -MD -DNDEBUG -DWIN32 -D_CONSOLE -DNO_STRICT - > > DHAVE_DES_FCRYPT -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DPERL_MSVCRT_ > > READ > > FIX', > > optimize='-O1 -MD -DNDEBUG', > > cppflags='-DWIN32' > > ccversion='', gccversion='', gccosandvers='' > > intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234 > > d_longlong=undef, longlongsize=8, d_longdbl=define, longdblsize=10 > > ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', > > lseeksize > > =4 > > alignbytes=8, usemymalloc=n, prototype=define > > Linker and Libraries: > > ld='link', ldflags > > '-nologo -nodefaultlib -release -libpath:"C:\Perl\lib\C > > ORE" -machine:x86' > > libpth="C:\Perl\lib\CORE" > > libs= oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib > > comdlg32 > > .lib advapi32.lib shell32.lib ole32.lib oleaut32.lib netapi32.lib uuid.lib > > wsoc > > k32.lib mpr.lib winmm.lib version.lib odbc32.lib odbccp32.lib msvcrt.lib > > perllibs= oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib > > comd > > lg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib netapi32.lib > > uuid.lib > > wsock32.lib mpr.lib winmm.lib version.lib odbc32.lib odbccp32.lib > > msvcrt.lib > > libc=msvcrt.lib, so=dll, useshrplib=yes, libperl=perl56.lib > > Dynamic Linking: > > dlsrc=dl_win32.xs, dlext=dll, d_dlsymun=undef, ccdlflags=' ' > > cccdlflags=' ', > > ddlflags='-dll -nologo -nodefaultlib -release -libpath:"C: > > \Perl\lib\CORE" -machine:x86' > > > > > > Characteristics of this binary (from libperl): > > Compile-time options: MULTIPLICITY USE_ITHREADS PERL_IMPLICIT_CONTEXT > > PERL_IMP > > LICIT_SYS > > Locally applied patches: > > ActivePerl Build 631 > > Built under MSWin32 > > Compiled at Jan 2 2002 17:16:22 > > @INC: > > C:/Perl/lib > > C:/Perl/site/lib > > . > > > > > > _______________________________________________________________ > > > > Have big pipes? SourceForge.net is looking for download mirrors. We supply > > the hardware. You get the recognition. Email Us: ban...@so... > > _______________________________________________ > > wxperl-users mailing list > > wxp...@li... > > https://lists.sourceforge.net/lists/listinfo/wxperl-users > > > __________________________________________________ > Do You Yahoo!? > LAUNCH - Your Yahoo! Music Experience > http://launch.yahoo.com > > |