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: Eriam S. <er...@er...> - 2007-03-02 13:49:26
|
Hello Bob, I suggest that you take a look at visualWx which is windows only and not free. But anyway it provides an excellent editor for frames and panels and so on and allows you to export to XRC which is in Wx langage the XML that defines interfaces out of the code. There is excellent examples of how to use XRC within wxPerl in the demo, notice that it's also possible to include your own subclassed components in XRC. Very powerfull. Good luck Eriam Bob Hunter a écrit : > ... an alternative to hand coding would be one that I > have long wanted to have, but were afraid to ask, that > is, to make a clear cut between the GUI and the actual > routines, and use an Interface Builder to design the > GUI with ease, provided the I.B. generates perl/wx > code. > > If you have references on how to do this, it would be > wonderful to have them. > > Bob > > > |
From: Bob H. <cat...@ya...> - 2007-03-01 22:29:26
|
Hello John, thank you for your notes. >As for coding the interface, no, it's nowhere near as simple as Perl/Tk. I was afraid of it. >The payoff is that it doesn't look anywhere near as bad, and you have a lot more control over the results and the "inner workings" of your program. I played with Apple's Interface Builder for about 30 minutes, knowing nothing about this tool I was able to rebuild the interface of the application that I want to port. This tool is great, but I do not know what to do with the code it generates. If I find a perl/wx extension to Xcode, I might solve that way, because Xcode takes care of the coding interface between the GUI and the routines. The hard work of designing the GUI and dealing with it's API would be gone for good. My core interest, however, is to keep the cross-platform approach; Tk runs everywhere, Wx has its known advantages, but Apple's Interface Builder does not seem to generate perl/wx code, and I am not into the business of porting perl into java... I tried wxGlade, but it did not respond, and then it crashed. I tried wxDesigner, but I do not understand it; by comparison with Apple's Interface Builder, wxDesigner is a shoot on one's foot, with all due respect to the effort of its developers. So I am stuck. I am committed to use Wx, not Apple's local library. On the GUI itself, what results from Apple's Interface Builder looks great. The only one thing I do not like is the notebook, because it does not look like one. > You can either create the interface by hand with code, use an interface design tool to do it for you (though only wxGlade emits perl), write definition files in XML for the XRC subsystem (definitely not recommended!), or use an interface design tool to do *that* for you. I do the last; many folks do the first. I understand you use wxGlade, or some other tool? > Once you have the visual interface created, you have to write code to make it do things and to move data between the interface and the working parts of your program. This need not be interlaced with the display code: Unlike Tk, wxWidgets is thoroughly object oriented, so it's pretty easy to use a design which keeps everything nicely separated. My greatest worry about GUIs has always been their life cycle; an update to the old library comes out and brakes something, or a new useful library that requires porting. So this functional separation is very welcome, provided one has the right tool to change the GUI and interface it with the existing routines. The harder problem is how to achieve it by hand, lacking the tools. Despite my many years of profession, I still find myself like a schoolboy. I do not mind learning new things, but sometimes I just do not have the time. I do not understand what refrains people from making a unified (open source) Interface Builder, that has all the possible graphical libraries, generates code into all possible languages, and runs on all platforms. It is not unrealistic, as many parts of it are already available. Can you recommend a good reference on how to separate the GUI from the routines? Bob ____________________________________________________________________________________ The fish are biting. Get more visitors on your site using Yahoo! Search Marketing. http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php |
From: John R. <jr...@ce...> - 2007-03-01 21:22:43
|
On Mar 1, 2007, at 10:15 AM, Bob Hunter wrote: > ... an alternative to hand coding would be one that I > have long wanted to have, but were afraid to ask, that > is, to make a clear cut between the GUI and the actual > routines, and use an Interface Builder to design the > GUI with ease, provided the I.B. generates perl/wx > code. > > If you have references on how to do this, it would be > wonderful to have them. > > Bob As for coding the interface, no, it's nowhere near as simple as Perl/ Tk. The payoff is that it doesn't look anywhere near as bad, and you have a lot more control over the results and the "inner workings" of your program. You can either create the interface by hand with code, use an interface design tool to do it for you (though only wxGlade emits perl), write definition files in XML for the XRC subsystem (definitely not recommended!), or use an interface design tool to do *that* for you. I do the last; many folks do the first. Once you have the visual interface created, you have to write code to make it do things and to move data between the interface and the working parts of your program. This need not be interlaced with the display code: Unlike Tk, wxWidgets is thoroughly object oriented, so it's pretty easy to use a design which keeps everything nicely separated. Regards, John Ralls |
From: John R. <jr...@ce...> - 2007-03-01 21:06:35
|
On Mar 1, 2007, at 10:06 AM, Bob Hunter wrote: > Hello, > > I am not subscribed, so, please, Cc the answers to my > address. > > I want to port an application from perl/tk to perl/wx, > under osx, but I am having difficulties in getting > started. My environment is: > > - latest osx, > - latest apple development tools, > - latest perl > - wxWidgets 2.6.something, via above dev tool, > - wxWidgets 2.8.1, installed via > .. Alien-wxWidgets-0.27_51.tar.gz > - wxPerl 0.26 (perl binary to focus on windows) > > It runs Apple's demos. > > Now, there is a nice tutorial at IBM's site > http://www-128.ibm.com/developerworks/library/l-wxwidgets/index.h > when I try to use the included perl script, PERL says: > >> Base class package "Wx::Frame" is empty. > > if I perldoc Wx::Frame, it says > >> No documentation found for "Wx::Frame". > > if I search CPAN for Wx::Frame, it says > > http://search.cpan.org/search?query=Wx%3A%3AFrame&mode=all > > where the only relevant module is "dotReader", not > mentioned in the original article at IBM. > > Now, I have been looking around for a cut through > introduction on how to port from perl/Tk, but had no > luck so far, and the available demos are everything > but elegant, by comparison with perl/tk. What I am > looking for is to avoid using an Interface Builder; > for this to be possible, I need the code to be as > minimal as in perl/Tk. Do you have any link to > up-to-date tutorials that would do in my case? > > Thank you. > Bob The problem with the perl program at ibm (the url is http://www-128.ibm.com/developerworks/linux/library/l-wxwidgets/ btw), is that it's lacking the all-important "use Wx;". There is no Wx/Frame.pm, so the use base doesn't know to pull anything in. The version of wxPerl that you indicate, 0.26, is antique, though not as antique as the one Apple provides in Developer Tools. (You didn't get wxWidgets 2.6.0 from Developer Tools; that's version 2.5.3.) To get up to date, make sure that the wx-config for your 2.8 installation is first on your path, then get the latest wxPerl from CPAN. There are some tutorials referenced on the wxPerl page, http:// wxperl.sourceforge.net, but they're kind of old. The basics haven't changed much, so they're likely good to get you started. You'll also find an annotated version of the wxWidgets documentation there. This may be useful if you run up against something where the wxPerl API differs significantly from the C++ one; there aren't many of those, though. I also highly recommend the wxPython website (http:// www.wxpython.org). The wxPython community is much larger than that of wxPerl, and their website and wiki have lots of good material for learning Wx. Don't neglect the wxWidgets site itself, either. The API is very consistent across the three languages, so it's really easy to use advice and examples for any of them with wxPerl. Regards, John Ralls |
From: Bob H. <cat...@ya...> - 2007-03-01 18:15:54
|
... an alternative to hand coding would be one that I have long wanted to have, but were afraid to ask, that is, to make a clear cut between the GUI and the actual routines, and use an Interface Builder to design the GUI with ease, provided the I.B. generates perl/wx code. If you have references on how to do this, it would be wonderful to have them. Bob ____________________________________________________________________________________ Never miss an email again! Yahoo! Toolbar alerts you the instant new Mail arrives. http://tools.search.yahoo.com/toolbar/features/mail/ |
From: Bob H. <cat...@ya...> - 2007-03-01 18:06:15
|
Hello, I am not subscribed, so, please, Cc the answers to my address. I want to port an application from perl/tk to perl/wx, under osx, but I am having difficulties in getting started. My environment is: - latest osx, - latest apple development tools, - latest perl - wxWidgets 2.6.something, via above dev tool, - wxWidgets 2.8.1, installed via .. Alien-wxWidgets-0.27_51.tar.gz - wxPerl 0.26 (perl binary to focus on windows) It runs Apple's demos. Now, there is a nice tutorial at IBM's site http://www-128.ibm.com/developerworks/library/l-wxwidgets/index.h when I try to use the included perl script, PERL says: >Base class package "Wx::Frame" is empty. if I perldoc Wx::Frame, it says >No documentation found for "Wx::Frame". if I search CPAN for Wx::Frame, it says http://search.cpan.org/search?query=Wx%3A%3AFrame&mode=all where the only relevant module is "dotReader", not mentioned in the original article at IBM. Now, I have been looking around for a cut through introduction on how to port from perl/Tk, but had no luck so far, and the available demos are everything but elegant, by comparison with perl/tk. What I am looking for is to avoid using an Interface Builder; for this to be possible, I need the code to be as minimal as in perl/Tk. Do you have any link to up-to-date tutorials that would do in my case? Thank you. Bob ____________________________________________________________________________________ Expecting? Get great news right away with email Auto-Check. Try the Yahoo! Mail Beta. http://advision.webevents.yahoo.com/mailbeta/newmail_tools.html |
From: Alex R. <rou...@me...> - 2007-02-28 23:45:37
|
On Wed, 2007-02-28 at 18:18 +0000, Mark Dootson wrote: > Hi, > > The wxFileDialog constants have changed between wxWidgets versions 2.6.3 > and 2.8.0. > > wxPDK would only continue to work if 2.8.0 were built with 2.6 > compatibility switched on. > > I will be making a release of Wx::Perl::Packager so that it works in > either case. > > For your own code you will either need to rewrite with new constants or > build wxWidgets with 2.6 compatibility switched on. Very helpful info, thank you. I now realize what has happened (besides me looking at apparently stale documentation and samples): DialogBlocks builds wxWidgets using default settings. Compatibility with 2.6 is enabled by default so DialogBlocks produces 2.6-compatible DLLs. Alien assumes we have converted our (and others!) code to use v2.8 names and disables compatibility by patching wxWidgets setup.h: > // Recommended setting: 0 (please update your code) > -#define WXWIN_COMPATIBILITY_2_6 1 > +#define WXWIN_COMPATIBILITY_2_6 0 Thus, those who compile wxWidgets on their own or via DialogBlocks, get a 2.6-compatible version. Those who use Alien, get a 2.8-only version. Thank you, Alex. > Alex Rousskov wrote: > >> Mattia Barbon wrote: > >>> 0.27_50 Sun Feb 25 22:39:43 CET 2007 > >>> - Fetch and build wxWidgets 2.8.0. > >>> - Update bundled modules to the latest version. > > > > I deleted Alien, wxPerl, and friends and reinstalling wxPerl using Alien > > 0.27_50. After the reinstall, I lost some wx constants! For example, > > when a freshly installed Wx::Perl::Packager (wxpdk) is trying top open a > > File dialog, it quits with: > > > >> Error while autoloading 'Wx::wxOPEN' at C:/Perl/site/lib/Wx/Perl/Packager/PDKWindow.pm line 257 > > > > Wxpdk worked fine before. > > > > My own wxPerl script "lost": wxNB_TOP, wxDIALOG_MODAL, wxOPEN, > > wxFILE_MUST_EXIST, and probably other constants, but not all of them. > > For example, the wxSAVE File dialog works. > > > > > > I know of two changes other than switching to 0.27_50: > > > > First, I let Alien build wxWidgets this time. I was using DialogBlocks > > to build wxWidgets before. I used wxWidgets v2.8.0 in both cases. > > > > Second, I applied the following fix (which was the primary reason for > > trying to build wxPerl from sources): > > http://wxperl.cvs.sourceforge.net/wxperl/wxPerl/cpp/helpers.cpp?r1=1.85&r2=1.86 > > > > > > Does anybody know what I am doing wrong? > > > > Do I need WXWIN and WXDIR variables when working with wxPerl and > > wxWidgets installed via Alien? My understanding was that those variables > > were needed when using an external (i.e., not Alien-built) copy of > > wxWidgets, but now I am even less sure. > > > > Thank you, > > > > Alex. > > > > nmake > > VC 7.1 > > wxPerl 0.67 > > Alien 0.27_50 > > wxWidgets 2.8.0 > > |
From: Mark D. <mar...@zn...> - 2007-02-28 18:18:21
|
Hi, The wxFileDialog constants have changed between wxWidgets versions 2.6.3 and 2.8.0. wxPDK would only continue to work if 2.8.0 were built with 2.6 compatibility switched on. I will be making a release of Wx::Perl::Packager so that it works in either case. For your own code you will either need to rewrite with new constants or build wxWidgets with 2.6 compatibility switched on. Regards Mark Alex Rousskov wrote: >> Mattia Barbon wrote: >>> 0.27_50 Sun Feb 25 22:39:43 CET 2007 >>> - Fetch and build wxWidgets 2.8.0. >>> - Update bundled modules to the latest version. > > I deleted Alien, wxPerl, and friends and reinstalling wxPerl using Alien > 0.27_50. After the reinstall, I lost some wx constants! For example, > when a freshly installed Wx::Perl::Packager (wxpdk) is trying top open a > File dialog, it quits with: > >> Error while autoloading 'Wx::wxOPEN' at C:/Perl/site/lib/Wx/Perl/Packager/PDKWindow.pm line 257 > > Wxpdk worked fine before. > > My own wxPerl script "lost": wxNB_TOP, wxDIALOG_MODAL, wxOPEN, > wxFILE_MUST_EXIST, and probably other constants, but not all of them. > For example, the wxSAVE File dialog works. > > > I know of two changes other than switching to 0.27_50: > > First, I let Alien build wxWidgets this time. I was using DialogBlocks > to build wxWidgets before. I used wxWidgets v2.8.0 in both cases. > > Second, I applied the following fix (which was the primary reason for > trying to build wxPerl from sources): > http://wxperl.cvs.sourceforge.net/wxperl/wxPerl/cpp/helpers.cpp?r1=1.85&r2=1.86 > > > Does anybody know what I am doing wrong? > > Do I need WXWIN and WXDIR variables when working with wxPerl and > wxWidgets installed via Alien? My understanding was that those variables > were needed when using an external (i.e., not Alien-built) copy of > wxWidgets, but now I am even less sure. > > Thank you, > > Alex. > > nmake > VC 7.1 > wxPerl 0.67 > Alien 0.27_50 > wxWidgets 2.8.0 > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users |
From: EUROMILLIONES <eur...@ya...> - 2007-02-28 15:34:42
|
EURO MILLIONS AWARD/PROMOTIONAL DEPARTMENT MADRID.SPAIN. Email:eur...@ya... EMAIL-LOTTERY AWARD PROMOTIONAL PROGRAMME We are pleased to inform you that your EMAIL ADDRESS has been selected as one of the 10 lucky winners in the email lottery programme conducted by the EURO MILLIONS on the 126th of february, 2007. The late release of this result was due to difficulties encountered in sorting out mixed up numbers and email addresses. All 10 winning addresses was randomly selected from a batch of 500,000,000 international emails. Your email address emerged alongside with 10 others as a Numeros "5 " winner in this year's euro millions award Draw. HOW WAS THE SELECTION DONE? Most recently the foundation set up the NEW HOPE LOTTERY to give out prizes based on the computer balloting system (THEREFORE YOU DO NOT NEED TO BUY A TICKET TO ENTER FOR IT.YOUR EMAIL ADDRESS WAS RANDOMLY SELECTED AS A WINNER). As a Number "5 " winner, your lucky email address was selected by the email computer balloting device, where only email addresses are sorted, from a total number of 500,000,000 international email addresses drawn from all over the globe, only ten winners emerged in this category. You winning email address has therefore been approved a lump sum payout of 466.812,79(Four hundred and sixty-six thousand ,eight hundred and twelve euro seventy nine cent) in cash credited to file REF.NO: ES/04678/SA . This from a total cash prize of 466,6127.09 (Four million six hundred and sixty-eight thousand, one hundred and twenty seven euro ,nine cent) shared among the 10 international winners in number 5. Below are the particulars attached to your LUCKY WINNING EMAIL . The file Ref number: ES/04678/SA Result winning numbers:8-16-19-43-45-1-4 Email ticket number:754/22/76 To immediately claim your prize, contact your claim agent http://www.national-lottery.com/resultseuro.asp SEND REQUIRED INFORMATION BELOW TO YOUR CLAIM AGENT ASESORIS.NET www.asesoris.com contact: foriegn operational manager, PEDRO ROBERTO calle leganes 16 fuenlabrada(madrid),spain. Tel:+34 646-334-038 E-mail: eur...@ya... FAX:001-309-412-7862 VERIFICATION FORM 1. FULL NAMES: _______________________________ 2. ADDRESS: __________________________________ 3. SEX: _______________ 4. AGE: ________ 5. MARITAL STATUS: ___________________ 6. OCCUPATION: _______________________ 7. E-MAIL ADDRESS: ___________________ 8. TELEPHONE NUMBER: ________________ 9. WINNING NUMBER: _______________ 10.EMAIL TICKET NUMBER: ___________________ 11.REFERENCE NUMBER: ______________ 12.AMOUNT WON: ______________________ The above claim agent will assist you in the processing and remittance of your winning prize (funds) to you. Also note that you are to contact and process your winning prize not later than twenty-one days, AFTER this date if you do not contact and process your winning prize, all funds will be returned to the MINISTERIO DE ECONOMIA Y HACIENDA as unclaimed. N.B:Terms and conditions to claim your prize: ********************************************** 1.Please quote your Reference Numbers ,Your full name and address, Country, Telephone ,mobile ,Fax number and occupation to your Claim Agent. 2.Your winning prize Has been insured to the Original value that no one else can lay hands or whatsoever to make claim of your winning prize except you the Beneficiary of this Email address. For more verification on your lucky winning email prize, you are to visit our online website page ( http://www.loteria.com/euro.php) and indicate the date this email lottery programme draw of the EURO MILLIONS was held and there you will find your result winning number Once again on behalf of all our staff, CONGRATULATIONS!!!. This promotion program is sponsored by EURO MILLIONES TO ENCOURAGE THE USE OF INTERNET. All informations have to be kept out of public until your winning prize has been processed and transferred to your designated bank account; this is to avoid double claim and unwarranted abuse of the programme by some participants. Sincerely, Mrs.Tonia Alicia. Promotions Manager Euro Millions eur...@ya... http://www.loteria.com/euro.php ------------------------------------------------- Program Warning!!! Fraudulent emails are circulating that appears to be impersonator using our names and addresses, but are not from the LOTTERY ONLINE PROGRAM PLEASE REPORT IMMEDIATELY TO CUSTOMER CARE/COMPLAINTS DEPT. Note: Participants below 15 years are automatically disqualified. All e-mail transmission/correspondence are 100% protected by our Secured Socket Layer (SSL) server. The NLS is an institution under public law. Therefore, the lottery contract is concluded between the lottery participant and the public law institution LOTTERY ONLINE PROGRAM This e-mail transmission contains information that is confidential and may be privileged. It is intended only for the addressee(s) named above. -------------------------------------------------- Copyright © 1994-2007 The Euro Millions Lottery S.l.. All rights reserved. Terms of Service - Guideline. |
From: Alex R. <rou...@me...> - 2007-02-28 05:17:23
|
> Mattia Barbon wrote: > > > > 0.27_50 Sun Feb 25 22:39:43 CET 2007 > > - Fetch and build wxWidgets 2.8.0. > > - Update bundled modules to the latest version. I deleted Alien, wxPerl, and friends and reinstalling wxPerl using Alien 0.27_50. After the reinstall, I lost some wx constants! For example, when a freshly installed Wx::Perl::Packager (wxpdk) is trying top open a File dialog, it quits with: > Error while autoloading 'Wx::wxOPEN' at C:/Perl/site/lib/Wx/Perl/Packager/PDKWindow.pm line 257 Wxpdk worked fine before. My own wxPerl script "lost": wxNB_TOP, wxDIALOG_MODAL, wxOPEN, wxFILE_MUST_EXIST, and probably other constants, but not all of them. For example, the wxSAVE File dialog works. I know of two changes other than switching to 0.27_50: First, I let Alien build wxWidgets this time. I was using DialogBlocks to build wxWidgets before. I used wxWidgets v2.8.0 in both cases. Second, I applied the following fix (which was the primary reason for trying to build wxPerl from sources): http://wxperl.cvs.sourceforge.net/wxperl/wxPerl/cpp/helpers.cpp?r1=1.85&r2=1.86 Does anybody know what I am doing wrong? Do I need WXWIN and WXDIR variables when working with wxPerl and wxWidgets installed via Alien? My understanding was that those variables were needed when using an external (i.e., not Alien-built) copy of wxWidgets, but now I am even less sure. Thank you, Alex. nmake VC 7.1 wxPerl 0.67 Alien 0.27_50 wxWidgets 2.8.0 |
From: Ben R. <rnc...@ad...> - 2007-02-28 04:34:04
|
This one is hardly promoted. Sym8oL: GDKICurr Price: $0.125 5 Day Target price: $0.95Action: = Aggresive Buy/Hold!! TRADE SMART AND WIN WITH US NOW! wxperl-users, take a look at the hottest news.. |
From: Bernie H. <mv...@cr...> - 2007-02-28 04:29:40
|
Just take a look at this one.. Search for: GDKICurrent price: $0.125 5 Day Target price: $0.95Market: = bullish! 500%+ profit (short term)... GDKI have released very hot news. Check this out, wxperl-users... |
From: Aprilq L. <iwe...@nt...> - 2007-02-28 02:18:59
|
Mourners honored the firefighters killed by the California arson fire as the first Critical Care Inc, symbl: .CTCX. This one is an easy doubler @ 65 cents wont last long Expected target : $ 3.00 Critical Care Announces Expansion of Cost Containment Activities Business Wire (Fri, Feb 16) Critical Care to Acquire Health Care Company Business Wire (Wed, Jan 31) GET IN TOMORROW, This one is shoo in to DOUBLE aircraft away from its intended path over the East River and into the building. |
From: Alex R. <rou...@me...> - 2007-02-27 18:59:48
|
On Tue, 2007-02-27 at 17:00 +0100, Mattia Barbon wrote: > Hi, > > > When I first failed to build wxPerl on Windows, I was able to find a > > binary package that worked. I now hit a wxPerl bug that was just fixed > > in CVS so I really need to build from sources this time. > > > > I built wxWidgets version 2.8.0 from sources using DialogBlocks and > > version 2.8.1(!) from sources using the most recent (development) > > version of Alien. Both built fine. > > > > I have tried various things, but am getting the following link error at > > the "nmake" step of wxPerl v0.67 build: > > > > With wxWidgets 2.8.0: > > ... > > <snip> > > > With 2.8.1 build by Alien: > > <snip> > > > Has anybody seen this? Any pointers on how to move forward from here? Am > > I missing a library? Which one? > > > > Environment: wxPerl v0.67; MS VC7; Alien v0.27 or Alien v0.27_51; > > wxWidgets v2.8.0 or wxWidgets v2.8.1 (according to Alien v0.27_51). > > I think the link line is missing the C++ runtime library, > IIRC it is called msvc70p.lib (or something like that, the suffix is > definitely 70<some letter>). Thank you for a prompt and helpful response! For the record, the missing library appears to be called msvcprt.lib. There is also a msvcp71.dll library that you were probably thinking about and that probably serves the same purpose, but I was unable to find a way to link with that because the linker wanted .lib. Thank you, Alex. |
From: Mattia B. \<mattia\.barbon\@libero\.it\> <mat...@li...> - 2007-02-27 16:02:19
|
Hi, > When I first failed to build wxPerl on Windows, I was able to find a > binary package that worked. I now hit a wxPerl bug that was just fixed > in CVS so I really need to build from sources this time. > > I built wxWidgets version 2.8.0 from sources using DialogBlocks and > version 2.8.1(!) from sources using the most recent (development) > version of Alien. Both built fine. > > I have tried various things, but am getting the following link error a= t > the "nmake" step of wxPerl v0.67 build: > > With wxWidgets 2.8.0: > ... <snip> > With 2.8.1 build by Alien: <snip> > Has anybody seen this? Any pointers on how to move forward from here? A= m > I missing a library? Which one? > > Environment: wxPerl v0.67; MS VC7; Alien v0.27 or Alien v0.27_51; > wxWidgets v2.8.0 or wxWidgets v2.8.1 (according to Alien v0.27_51). I think the link line is missing the C++ runtime library, IIRC it is called msvc70p.lib (or something like that, the suffix is definitely 70<some letter>). HTH Mattia =0A=0A=0A------------------------------------------------------=0APassa a= Infostrada. ADSL e Telefono senza limiti e senza canone Telecom=0Ahttp:/= /click.libero.it/infostrada27eb07=0A |
From: Gerrit W. <gw...@gr...> - 2007-02-27 12:36:19
|
Hi there, a friend of mine just asked me if it is possible to create an application for an keyboardless touchscreen box using wxperl. my idea was to paint a virtual keybord at te bottom of the application and wait for mousclick events. Then check the cklick-coordinates, generate an appropriate wxKeyEvent (type wxChar) and send it to the control that owns the focus via AddPendingEvent. I found this working for Button click events : my $event = Wx::CommandEvent->new(wxEVT_COMMAND_BUTTON_CLICKED,$butto n->GetId); $window->AddPendingEvent($event); but i can't figure out how to create an wxKeyEvent by hand. Hope someone can give me a hint. regards Gerrit Wichert |
From: Mark D. <mar...@zn...> - 2007-02-27 01:53:59
|
Hi, Win XP SP2 ActiveState 820 MSVC 6 0.27_50 builds fine. For 0.27_51, the downloaded 2.8.1 wxWidgets tar.gz file will not extract. This is most probably something peculiar on my system. I can extract the tar.gz file using the gnuwin32 builds of gzip and tar, but both the Alien Build script and Winzip fail. Still, I can't actually report that 0.27_51 works. (I've tried the download several times) Regards Mark Mattia Barbon wrote: > Hi all, > > 0.27_51 Sun Feb 25 22:54:07 CET 2007 > - Fetch and build wxWidgets 2.8.1. > > 0.27_50 Sun Feb 25 22:39:43 CET 2007 > - Fetch and build wxWidgets 2.8.0. > - Update bundled modules to the latest version. > > Please test and report any problems (works for me under > Windows and Linux). If no problems are reported, this will > be released as 0.28. > > Regards > Mattia > > Begin forwarded message: > > Date: Sun, 25 Feb 2007 22:55:56 +0100 > From: PAUSE <up...@pa...> > To: "Mattia Barbon" <mat...@li...> > Subject: CPAN Upload: M/MB/MBARBON/Alien-wxWidgets-0.27_51.tar.gz > > > The uploaded file > > Alien-wxWidgets-0.27_51.tar.gz > > has entered CPAN as > > file: $CPAN/authors/id/M/MB/MBARBON/Alien-wxWidgets-0.27_51.tar.gz > size: 121937 bytes > md5: 65e61bad5abeef35dc1cc486ad59ac32 > > No action is required on your part > Request entered by: MBARBON (Mattia Barbon) > Request entered on: Sun, 25 Feb 2007 21:55:00 GMT > Request completed: Sun, 25 Feb 2007 21:55:56 GMT > > Thanks, |
From: Alex R. <rou...@me...> - 2007-02-26 22:15:30
|
Hi there, When I first failed to build wxPerl on Windows, I was able to find a binary package that worked. I now hit a wxPerl bug that was just fixed in CVS so I really need to build from sources this time. I built wxWidgets version 2.8.0 from sources using DialogBlocks and version 2.8.1(!) from sources using the most recent (development) version of Alien. Both built fine. I have tried various things, but am getting the following link error at the "nmake" step of wxPerl v0.67 build: With wxWidgets 2.8.0: ... nmake -f Makefile all -nologo cl -c -I. -I..\.. -IC:\Perl\site\lib\Alien\wxWidgets\msw_2_8_0_cl_0 \lib -IC:\Progra~1\wxWidgets-2.8.0\include -IC:\Progra~1\wxWidgets-2.8.0 \contrib\include -GF -TP /c /nologo /TP /MD /O2 /W4 /GR /EHsc -MD -Zi -DNDEBUG -O1 -DVERSION=\"0.01\" -DXS_VERSION=\"0.01\" "-IC:\Perl \lib\CORE" -DWXPL_EXT -DWIN32 -D__WXMSW__ -DWXUSINGDLL -D_WINDOWS -DNOPCH -D_CRT_SECURE_NO_DEPRECATE RichText.c RichText.c RichText.c(3064) : warning C4189: 'CLASS' : local variable is initialized but not referenced RichText.c(3083) : warning C4189: 'THIS' : local variable is initialized but not referenced ... [ more similar warnings skipped ] ... Running Mkbootstrap for Wx::RichText () C:\Perl\bin\perl.exe -MExtUtils::Command -e chmod 644 RichText.bs link -out:..\..\blib\arch\auto\Wx\RichText\RichText.dll -dll -nologo -nodefaultlib -debug -opt:ref,icf -libpath:"C:\Perl\lib\CORE" -machine:x86 RichText.obj C:\Perl\lib\CORE\perl58.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_0_cl_0\lib\wxmsw28_core.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_0_cl_0\lib\wxbase28.lib C:\Perl\site\lib\Alien \wxWidgets\msw_2_8_0_cl_0\lib\wxmsw28_richtext.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_0_cl_0\lib\wxmsw28_html.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_0_cl_0\lib\wxmsw28_adv.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_0_cl_0\lib\wxmsw28_core.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_0_cl_0\lib\wxbase28.lib "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\LIB\oldnames.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\LIB\kernel32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \user32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\gdi32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\winspool.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\comdlg32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \advapi32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\shell32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\ole32.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\oleaut32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \netapi32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\uuid.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\ws2_32.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\mpr.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \winmm.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\version.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\odbc32.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\odbccp32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\LIB\msvcrt.lib" -def:RichText.def RichText.obj : warning LNK4197: export '_boot_Wx__RichText' specified multiple times; using first specification Creating library ..\..\blib\arch\auto\Wx\RichText\RichText.lib and object ..\..\blib\arch\auto\Wx\RichText\RichText.exp RichText.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::_Mutex::_Unlock(void)" (__imp_?_Unlock@_Mutex@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_istream<unsigned short,struct std::char_traits<unsigned short> >::_Sentry_base::~_Sentry_base(void)" (??1_Sentry_base@?$basic_istream@GU?$char_traits@G@std@@@std@@QAE@XZ) RichText.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::_Mutex::_Lock(void)" (__imp_?_Lock@_Mutex@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_ostream<unsigned short,struct std::char_traits<unsigned short> >::_Sentry_base::_Sentry_base(class std::basic_ostream<unsigned short,struct std::char_traits<unsigned short> > ... [ many more similar errors skipped ] ... With 2.8.1 build by Alien: ... nmake -f Makefile all -nologo link -out:..\..\blib\arch\auto\Wx\RichText\RichText.dll -dll -nologo -nodefaultlib -debug -opt:ref,icf -libpath:"C:\Perl\lib\CORE" -machine:x86 RichText.obj C:\Perl\lib\CORE\perl58.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_1_cl_0\lib\wxmsw28_core.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_1_cl_0\lib\wxbase28.lib C:\Perl\site\lib\Alien \wxWidgets\msw_2_8_1_cl_0\lib\wxmsw28_richtext.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_1_cl_0\lib\wxmsw28_html.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_1_cl_0\lib\wxmsw28_adv.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_1_cl_0\lib\wxmsw28_core.lib C:\Perl\site\lib \Alien\wxWidgets\msw_2_8_1_cl_0\lib\wxbase28.lib "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\LIB\oldnames.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\LIB\kernel32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \user32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\gdi32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\winspool.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\comdlg32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \advapi32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\shell32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\ole32.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\oleaut32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \netapi32.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\uuid.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\ws2_32.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\mpr.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib \winmm.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7 \PlatformSDK\lib\version.lib" "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\odbc32.lib" "C:\Program Files \Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\odbccp32.lib" "C: \Program Files\Microsoft Visual Studio .NET 2003\VC7\LIB\msvcrt.lib" -def:RichText.def RichText.obj : warning LNK4197: export '_boot_Wx__RichText' specified multiple times; using first specification Creating library ..\..\blib\arch\auto\Wx\RichText\RichText.lib and object ..\..\blib\arch\auto\Wx\RichText\RichText.exp RichText.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::_Mutex::_Unlock(void)" (__imp_?_Unlock@_Mutex@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_istream<unsigned short,struct std::char_traits<unsigned short> >::_Sentry_base::~_Sentry_base(void)" (??1_Sentry_base@?$basic_istream@GU?$char_traits@G@std@@@std@@QAE@XZ) RichText.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::_Mutex::_Lock(void)" (__imp_?_Lock@_Mutex@std@@QAEXXZ) referenced in function "public: __thiscall std::basic_ostream<unsigned short,struct std::char_traits<unsigned short> >::_Sentry_base::_Sentry_base(class std::basic_ostream<unsigned short,struct std::char_traits<unsigned short> > &)" (??0_Sentry_base@?$basic_ostream@GU?$char_traits@G@std@@@std@@QAE@AAV12@@Z) ... [ many more similar errors skipped ] ... Has anybody seen this? Any pointers on how to move forward from here? Am I missing a library? Which one? Environment: wxPerl v0.67; MS VC7; Alien v0.27 or Alien v0.27_51; wxWidgets v2.8.0 or wxWidgets v2.8.1 (according to Alien v0.27_51). Thank you, Alex. |
From: Donovan S. <hic...@ha...> - 2007-02-25 23:34:00
|
Hi, Chaepest CALIS and VAGRA online. http://parkerokay+now.com Remove "+" from the link. and returned well after dinner every night. Its been an absolute uproar, Percy told them importantly the Sunday evening before they were due to return to Hogwarts. Ive been putting |
From: Peter T. <pe...@Pe...> - 2007-02-25 22:13:37
|
I am displaying an IE window inside my Wx program. I am trying to find out the HTML/DOM element under the mouse, either by moving the mouse over elements or by clicking. I need some way for the user to identify an element visually and find out which element it is. I have a hunch that I could somehow put the IE window into 'Edit mode' and capture mouseOver events (or something), but no idea how I might follow up on that hunch. Or maybe I could force some javascript into the page that would catch mouseOver events, either all the time or modally, and write the element ID and NAME into the statusbar, then capture statusbar-changed events in ActiveX::IE... Any help? |
From: Mattia B. <mat...@li...> - 2007-02-25 22:00:45
|
Hi all, 0.27_51 Sun Feb 25 22:54:07 CET 2007 - Fetch and build wxWidgets 2.8.1. 0.27_50 Sun Feb 25 22:39:43 CET 2007 - Fetch and build wxWidgets 2.8.0. - Update bundled modules to the latest version. Please test and report any problems (works for me under Windows and Linux). If no problems are reported, this will be released as 0.28. Regards Mattia Begin forwarded message: Date: Sun, 25 Feb 2007 22:55:56 +0100 From: PAUSE <up...@pa...> To: "Mattia Barbon" <mat...@li...> Subject: CPAN Upload: M/MB/MBARBON/Alien-wxWidgets-0.27_51.tar.gz The uploaded file Alien-wxWidgets-0.27_51.tar.gz has entered CPAN as file: $CPAN/authors/id/M/MB/MBARBON/Alien-wxWidgets-0.27_51.tar.gz size: 121937 bytes md5: 65e61bad5abeef35dc1cc486ad59ac32 No action is required on your part Request entered by: MBARBON (Mattia Barbon) Request entered on: Sun, 25 Feb 2007 21:55:00 GMT Request completed: Sun, 25 Feb 2007 21:55:56 GMT Thanks, -- paused, v845 |
From: Vip C. <bos...@ex...> - 2007-02-25 20:37:24
|
=GDKI= STILL MOVING LIKE A COMET AND ITS ONLY GOING TO GET BETTER! Watch this SUPERNOVA closely Monday! GOLDMARK INDUSTRIES INC Symbol: GDKI Price: $0.13 GET IN ON February 26 Monday, 2007 NEWS RELEASED ON 2007/02/20 05:39 Goldmark Industries, Inc. (Pk Sheet: GDKI ), is excited to announce that its recent acquisition, Habana Blues, which was nominated for four Goya awards, the equivalent of the Oscars in Spain, has been requested by numerous film festivals across the nation and will be featured at the exclusive Latin American Film Festival in Champaign, Illinois, February 23rd to March 1st. The film, which was released by Warner Home Video International, has been making waves since its success at the prestigious Cannes International Film Festival. Goldmark is currently in negotiations for the award-winning films theatrical release. cted that he should, Only too often did he sink to the grade of the ordinary "Tale from 'Blackwood,'" which he himself satirized in his usual savage vein of humor Yet even in his flimsiest and most tawdry tales we see the truth of Mr Lowell's assertion that Poe had "two of the prime qualities of genius,--a faculty of vigorous yet minute analysis, and a wonderful fecundity of imagination" Mr Lowell said also that Poe combined "in a very remarkable manner two faculties which are seldom found united,--a power of influencing the mind of the reader by the impalpable shadows of mystery, and a minuteness of detail which does not leave a pin or a button unnoticed Both are, in truth, the natural results of the predominating quality of his mind, to which we have before alluded,--analysis" In Poe's hands, however, the enumeration of pins and buttons, the exact imitation of the prosaic facts of humdrum life in this workaday world, is not an end, but a means only, whereby he constructs and intensifies the shadow of mystery which broods over the things thus realistically portrayed With the recollection that it is more than half a century since Hawthorne and Poe wrote their best Short-stories, it is not a little comic to see now and again in American newspapers a rash assertion that "American literature has hitherto been deficient in good Short-stories," or the reckless declaration that "the art of writing Short-stories has not hitherto been cultivated in the United States" Nothing could be more inexact than these statements Almost as soon as America began to have any literature at all it had good Short-stories It is quite within ten, or at the most twenty, years that the American novel has come to the front and forced the acknowledgment of its equality with the English novel and the French novel; but for fifty years the American Short-story has had a supremacy which any competent critic could not but acknowledge Indeed, the present excellence of the American novel is due in great measure to the Short-story; for nearly every one of the American novelists whose works are now read by the whole English-speaking race began as a writer of Short-stories Although as a form of fiction the Short-story is not inferior to the Novel, and although it is not easier, all things considered, yet its brevity makes its composition simpler for the 'prentice hand Though the Short-stories of the beginner may not be good, yet in the writing of Short-stories he shall learn how to tell a story, he shall discover by experience the elements of the art of fiction more readily and, above all, more quickly than if he had begun on a long and exhausting novel The physical strain of writing a full-sized novel is far greater than the reader can well imagine To this strain the beginner in fiction may gradually accustom himself by the composition of Short stories Here, if the digression may be pardoned, occasion serves to say that if our writers of plays had the same chance that our writers of novels have, we might now have a school of American dramatists of which we should be as proud as of our school of American novelists In dramatic composition, the equivalent of the Short-story is the one-act play, be it drama or comedy or comedietta or farce As the novelists have learned their trade by the writing of Short-stories, so the dramatists might learn their trade, far more difficult as it is and more complicated, by the writing of one-act plays But, while the magazines of the United States are hungry for good Short-stories, and sift carefully all that are sent to them, in the hope of happening on a treasure, the theatres of the United States are closed to one-act plays, and the dramatist is denied the opportunity of making a humble and tentative beginning The conditions of the theatre are such that there is little hope of a change for the better in this respect,--more's the pity The manager has a tradition that a "broken bill," a programme containing more than one play, is a confession of weakness, and he prefers, so far as possible, to keep his weakness concealed When we read the roll of American novelists, we see that nearly all of them began as writers of Short-stories Some of them, Mr Bret Harte, for instance, and Mr Edward Everett Hale, never got any farther, or, at least, if they wrote novels, their novels did not receive the full artistic appreciation and popular approval bestowed on their Short-stories Even Mr Cable's "Grandissimes" has not made his readers forget his "Jean-ah Poquelin," nor has Mr Aldrich's "Queen of Sheba," charming as she was, driven from our memory his "Margery Daw," as delightful and as captivating as that other non-existent heroine, Mr Austin Dobson's "Dorothy" Mrs Burnett put forth one volume of Short-stories and Miss Woolson two before they attempted the more sustained flight of the full-fledged Novel The same may be said of Miss Jewett, of Mr Craddock, and of Mr Boyesen Mr Bishop and Mr Lathrop and Mr Julian Hawthorne wrote Short-stories before they wrote novels Mr Henry James has never gathered into a book from the back-numbers of magazines the half of his earlier efforts In these references to the American magazine I believe I have suggested the real reason of the superiority of the American Short-stories over the English It is not only that the eye of patriotism may detect more fantasy, more humor, a finer feeling for art, in these younger United States, but there is a more emphatic and material reason for the American proficiency There is in the United States a demand for Short-stories which does not exist in Great Britain, or at any rate not in the same degree The Short-story is of very great importance to the American magazine But in the British magazine the serial Novel is the one thing of consequence, and all else is termed "padding" In England the writer of three-volume Novels is the best |
From: Mark D. <mar...@zn...> - 2007-02-25 05:11:55
|
Hi, So what is in your Alien::wxWidgets directories? Are the required libraries there? Mark Toxa wrote: > > hi, Mark > > I build wx from cvs (head revision, as well as 2.8) and I build and install > "stc" from the wx source tree. > stc is installed on my system in the same directory as wx itself. > But it looks like wxPerl does not detect it: |
From: Toxa <af-...@fr...> - 2007-02-24 18:56:36
|
hi, Mark thank you for your reply! I build wx from cvs (head revision, as well as 2.8) and I build and install "stc" from the wx source tree. stc is installed on my system in the same directory as wx itself. But it looks like wxPerl does not detect it: ... Writing Makefile for Wx::XRC Writing Makefile for Wx::Grid Attempt to free unreferenced scalar: SV 0xfcb130, Perl interpreter: 0x503010 at /usr/local/share/perl/5.8.8/ExtUtils/MakeMaker.pm line 191. ERROR from evaluation of /nimble/src/wxPerl-0.67/ext/Makefile.PL: ERROR from evaluation of /nimble/src/wxPerl-0.67/ext/stc/Makefile.PL: No such 'link' library: 'stc' at /nimble/src/wxPerl-0.67/build/Wx/build/MakeMaker.pm line 206 # Looks like your test died before it could output anything. AF. -- View this message in context: http://www.nabble.com/stc-library-not-found-while-trying-to-install-Wx-0.67-on-FC5-tf3245587.html#a9136704 Sent from the wxperl-users mailing list archive at Nabble.com. |
From: Mark D. <mar...@zn...> - 2007-02-23 22:18:49
|
Mark Dootson wrote: And once more, WITH attached file : -) |