You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(12) |
Aug
(34) |
Sep
(14) |
Oct
(36) |
Nov
(32) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(9) |
Mar
(31) |
Apr
(36) |
May
(17) |
Jun
(21) |
Jul
(13) |
Aug
(18) |
Sep
(2) |
Oct
(10) |
Nov
(18) |
Dec
(28) |
2005 |
Jan
(26) |
Feb
(15) |
Mar
(26) |
Apr
(11) |
May
(60) |
Jun
(3) |
Jul
(12) |
Aug
(4) |
Sep
(12) |
Oct
(19) |
Nov
(36) |
Dec
(10) |
2006 |
Jan
(6) |
Feb
(13) |
Mar
(6) |
Apr
(2) |
May
(9) |
Jun
(3) |
Jul
(6) |
Aug
(13) |
Sep
(1) |
Oct
(24) |
Nov
(33) |
Dec
(47) |
2007 |
Jan
(21) |
Feb
(41) |
Mar
(17) |
Apr
(9) |
May
(4) |
Jun
(20) |
Jul
(24) |
Aug
(71) |
Sep
(35) |
Oct
(10) |
Nov
(39) |
Dec
(39) |
2008 |
Jan
(24) |
Feb
(42) |
Mar
(61) |
Apr
(12) |
May
(11) |
Jun
(4) |
Jul
(9) |
Aug
(6) |
Sep
(6) |
Oct
(4) |
Nov
(3) |
Dec
(14) |
2009 |
Jan
(25) |
Feb
(18) |
Mar
(19) |
Apr
(24) |
May
(14) |
Jun
(7) |
Jul
(14) |
Aug
(25) |
Sep
(40) |
Oct
(20) |
Nov
(22) |
Dec
(4) |
2010 |
Jan
(55) |
Feb
(11) |
Mar
(9) |
Apr
(10) |
May
(10) |
Jun
(9) |
Jul
(7) |
Aug
(4) |
Sep
(15) |
Oct
(7) |
Nov
(2) |
Dec
(3) |
2011 |
Jan
(2) |
Feb
(1) |
Mar
(4) |
Apr
(6) |
May
(20) |
Jun
(30) |
Jul
(15) |
Aug
(4) |
Sep
(23) |
Oct
(24) |
Nov
(3) |
Dec
(8) |
2012 |
Jan
(23) |
Feb
(7) |
Mar
(19) |
Apr
(48) |
May
(8) |
Jun
(27) |
Jul
(10) |
Aug
(1) |
Sep
(11) |
Oct
(1) |
Nov
|
Dec
(3) |
2013 |
Jan
(1) |
Feb
|
Mar
(17) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(12) |
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2015 |
Jan
|
Feb
|
Mar
(14) |
Apr
(5) |
May
(1) |
Jun
|
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
(2) |
Dec
(1) |
2016 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Conal E. <co...@co...> - 2007-02-14 00:29:09
|
Am I imagining or did haddock doc file names just get changed from " http://wxhaskell.sourceforge.net/doc/Graphics-UI-WX-Attributes.html" to " http://wxhaskell.sourceforge.net/doc/Graphics.UI.WX.Attributes.html" (etc)? My auto-generated doc links from Phooey to wxHaskell are now all broken. See http://darcs.haskell.org/packages/phooey/doc/html/Graphics-UI-Phooey-Imperative.html. Thanks, - Conal |
From: <jmv...@gm...> - 2007-02-05 16:18:02
|
Hi =20 I=92m running a program with a graphical interface in wxHaskell.=20 My program have one button that starts a sometimes very long computation that even could get cyclic in some cases. I created a Stop button that = when pressed changes the State of the application (type State =3D Var = MyRecordType from = http://wxhaskell.sourceforge.net/doc/Graphics.UI.WX.Types.html#t%3AVar ). Then my very long computation, before calling the recursive call, = checks if the State is saying to continue or stop. =20 In theory this seems the solution but when I tested it I find out that = it doesn=92t. The very long computation gets the attention of the processor = and blocks the graphical interface; clicking the Stop button don=92t fire = the actions. =20 I=92m not sure but is this running sequencially? Which ways have I to = overcome this block? =20 Best Miguel=20 =20 =20 |
From: <ar...@cs...> - 2007-02-02 15:47:55
|
Fri Feb 2 16:45:17 CET 2007 ar...@cs... * fix-polygon-behaviour-64 Fixed issue 'Strange polygon behaviour on 64-bit machines' reported by Chris Mears at 14 Dec 2006. = Problem: the arrays inspected by the wxDC_Polygon function are assumed to contain 32-bits ints. On 64-bit machines these are actually 64-bits ints. = Fix: (a bit of a hack...) the code now assumes that the arrays contain intptr_t values. This type represents ints of the same number of bits as the Haskell ints (on 32-bit and 64-bit machines). The code now dereferences each element in the array correctly, but still truncates the possibly 64-bit value to a 32-bit value. This is not a problem in practice. |
From: shelarcy <she...@gm...> - 2007-02-02 14:47:04
|
Hi Ari, On Fri, 02 Feb 2007 22:31:03 +0900, Arie Middelkoop <ar...@cs...> wrote: > I managed to fix the problem of incorrect polygon drawing on 64-bit > machines. It is basically a similar fix of what I send in a long time > ago, but it has portability issues with respect to win32: > > A simple fix is to change (in wxc/src/ewxw/eljdc.cpp) the cast to (int*) > to the cast to (intptr_t*). On a 64-bit machine, this will cause a > correct read of the 64-bit int (provided by the Haskell world) and > truncates it to a 32-bit int required by wxWidgets. > > What I remember is that intptr_t is not defined in win32. How was this > solved previous time? inttypes.h doesn't exist in Visual C++ 7 (Visual Studio 2003). But intptr_t is available by io.h. So I added compilation flag to build both gcc and Visual C++. http://sourceforge.net/mailarchive/forum.php?thread_id=31202423&forum_id=34197 http://darcs.haskell.org/wxhaskell/wxc/include/wrapper.h Best Regards, -- shelarcy <shelarcy capella.freemail.ne.jp> http://page.freett.com/shelarcy/ |
From: Arie M. <ar...@cs...> - 2007-02-02 13:31:12
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I managed to fix the problem of incorrect polygon drawing on 64-bit machines. It is basically a similar fix of what I send in a long time ago, but it has portability issues with respect to win32: A simple fix is to change (in wxc/src/ewxw/eljdc.cpp) the cast to (int*) to the cast to (intptr_t*). On a 64-bit machine, this will cause a correct read of the 64-bit int (provided by the Haskell world) and truncates it to a 32-bit int required by wxWidgets. What I remember is that intptr_t is not defined in win32. How was this solved previous time? Greetings, Arie -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.1 (GNU/Linux) iD8DBQFFwz0Xo/bEreefDJoRAvRWAKCYpZJOWFUEalBICUNLzoQU+77+cgCdHmY2 y3V/DsaVZVu8+r505UHom7Q= =W69U -----END PGP SIGNATURE----- |
From: Warrior T. <suo...@sh...> - 2007-01-31 11:24:31
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2900.2912" name=3D"GENERATOR"> </HEAD> <BODY> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>HOT ALERT - THIS ONE IS STILL CLIMBING CHARTS</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><I>WATCH THIS ONE GO HIGHER AND HIGHER!</I></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>Company Name: <B>PetroSun</B> </FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>Lookup: <B>PSUD</B> </FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>Price Currently: <B>$0.81 (+0.01 Close) 1.3%</B></FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>3 Day Target: <B>$2.00</B></FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>Expected Target: <B>$1.50</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>01/11/07</FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>PetroSun, Incorporated (PKSHEETS: PSUD) announced agreements have been carried out with New Standard Exploration NL of West Perth, AU covering Exploration Permit 417 located within Canning Basin of Western AU.</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>01/08/07</FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>PetroSun, Incorporated (PKSHEETS: PSUD) announced today that the company has completed the acquisition of all of the member units of 1031 Energy, LLC of Denver, Colorado.</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><I><b>**Go read *all* the News Releases now and keep an eye out daily**</b></I></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B><U>WATCH IT WEDNESDAY AT THE OPEN!<U></B></FONT></DIV><BR></BODY></HTML> |
From: center. <kbe...@te...> - 2007-01-30 20:25:03
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2900.2912" name=3D"GENERATOR"> </HEAD> <BODY> <DIV align=3Dleft><FONT face=3DArial size=3D2><B>PSUD IS ON THE MOVE! GET IN WHILE YOU CAN!</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><I>Will this Stock be a "Super Nova?"</I></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>The Company: <B>PetroSun</B> </FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>Ticker: <B>PSUD</B> </FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>Current: <B>$0.80 (+0.28 Close) 53.8%</B></FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>3 Day Target: <B>$2.00</B></FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>BREAKING NEWS: PetroSun, Incorporated (PNKSHEETS: PSUD) recently announced that they have an agreement executed with New Standard Exploration NL of West Perth, Australia.</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><B><U>Put PSUD on your radar's now. Good luck and trade out at the top!!<U></B></FONT></DIV></BODY></HTML> |
From: Eric Y. K. <eri...@gm...> - 2007-01-28 21:09:42
|
Mostly an import of the homepage into darcs, along with the Scintilla stuff, some darcs repo stuff and a Makefile tweak. Accepted since the last cycle (13) --------------------------------- Thu Jan 11 10:06:41 CET 2007 shelarcy <she...@ca...> * Merge wxStyledTextCntrl (Scintilla edit control wrapper) support from H= aste project Sat Jan 20 23:59:14 CET 2007 Eric Kow <eri...@lo...> * Modify wx-install so it doesn't accidentally recompile things. =20 Sat Jan 20 22:21:46 CET 2007 Eric Kow <eri...@lo...> * Add an etc/ directory for misc use. Sat Jan 20 23:12:23 CET 2007 Eric Kow <eri...@lo...> * Use a custom boring file. (Right now just the darcs default) Sat Jan 20 23:12:35 CET 2007 Eric Kow <eri...@lo...> * Add some wxhaskell-specifile boring file regexps. Sat Jan 20 23:13:04 CET 2007 Eric Kow <eri...@lo...> * Add wxhaskell homepage files (main html, css only). =20 Sat Jan 20 23:16:19 CET 2007 Eric Kow <eri...@lo...> * Remove counter code from homepage. Sat Jan 20 23:27:24 CET 2007 Eric Kow <eri...@lo...> * Add images directory (and wxhaskell logo). Sat Jan 20 23:33:01 CET 2007 Eric Kow <eri...@lo...> * Add images used for samples (homepage). Sat Jan 20 23:36:50 CET 2007 Eric Kow <eri...@lo...> * Add images used in quick start (homepage). Sat Jan 20 23:41:04 CET 2007 Eric Kow <eri...@lo...> * Add application screenshots (homepage). Sat Jan 20 23:44:35 CET 2007 Eric Kow <eri...@lo...> * Add miscellaneous other images (homepage). Sun Jan 21 00:14:03 CET 2007 Eric Kow <eri...@lo...> * Announce new maintainers, darcs (homepage). =20 Please resend any patches I may have missed --=20 Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon fran=E7ais. |
From: Eric Y. K. <eri...@gm...> - 2007-01-28 21:00:31
|
> Sat Jan 20 23:13:04 CET 2007 Eric Kow <eri...@lo...> > * Add wxhaskell homepage files (main html, css only). >=20 > Sat Jan 20 23:16:19 CET 2007 Eric Kow <eri...@lo...> > * Remove counter code from homepage. >=20 > Sun Jan 21 00:14:03 CET 2007 Eric Kow <eri...@lo...> > * Announce new maintainers, darcs (homepage). Pushing these in along with the images; will be updating the actual page shortly. --=20 Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon fran=E7ais. |
From: Eric Y. K. <eri...@gm...> - 2007-01-28 20:59:48
|
> Sat Jan 20 23:59:14 CET 2007 Eric Kow <eri...@lo...> > * Modify wx-install so it doesn't accidentally recompile things. No complaints, so these are going in. --=20 Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon fran=E7ais. |
From: Lennart K. <kol...@dt...> - 2007-01-28 16:32:27
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 shelarcy wrote: > Hello all, > > I made patch that merge wxSTC (wxStyledTextCntrl) support from Haste > project. > Cool! I've often thought of doing this, but haven't done it as I don't write much GUI apps any more. > I used modified (that to support GHC 6.6) version of Haste, to test wxSTC. > It works on Windows, but it terminate program soonly on Mac OS X. > (You can use other features on Mac OS X. So, don't worry about that.) So haste lives again, nice to hear! :D > And by a few reasons, this support is experimental. > - This support lacks some functionality. > -- See source code comment, you can find it. > - Some useful function implemented in Hastes's source code. > -- I have to move them. I'm sure that much of the functionality is missing, we took some few things we needed to get haste started. The rest is not yet done. > If you want to modify or extend this support, you want to test stc support > > I uploaded my modified version of Haste in Kamiariduki's space. So you > can download that. > https://sourceforge.net/project/showfiles.php?group_id=168626 > > Or you can download old Haste from Haste's project page. > (But Haste's web site and svn repository is lost. So this is not latest > one.) > http://sourceforge.net/projects/haste-ide/ > Indeed the repo and homepage is lost since a long time, but I was able to find the old development code on my laptop! I don't know what differs from the last released version and my version. We haven't touched it since the day of the deadline of this university project. I've put it online: http://haskell.org/~kolmodin/code/haste/ It includes everything I had when working on wxSTC/haste, including university paper, silly tests, temporary files and whatnot. It even includes the homepage! :) > Current version depends on wxSTC-D3's stc.h. > This file is clean-uped version of contrib/include/wx/stc/stc.h. > I used this file that used in Hastes' wxSTC support. > Because wxdirect's CompileSTC can't parse original file now. CompileSTC couldn't parse the original file back then either. We had to manually remove parts from stc.h that our naive parser couldn't handle. A really ugly hack :) > CompileSTC can't treat #ifdef pragma. > It's not difficult task. Because this pragma separate only one > condition - use SWIG or not. Of course we don't use SWIG. I belive that there was more things we couldn't parse, but I'm not sure any more. If I'd done it again today I might had "borrowed" the parser from c2hs and done it properly. Cheers, Lennart Kolmodin -- one of the original five developers of haste - -- "The only thing that interferes with my learning is my education." -- Albert Einstein -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFvNAQ4txYG4KUCuERAiR4AJ9xSgyILXqNfoffQSRpcjFLpqoVeACfUBkt oL0KZTknFaC/ssg8oLUqpl0= =vokR -----END PGP SIGNATURE----- |
From: Arthur v. L. <art...@cs...> - 2007-01-21 11:33:49
|
On 21-jan-2007, at 0:51, Eric Y. Kow wrote: > On Fri, Jan 19, 2007 at 18:05:53 +0100, Arthur van Leeuwen wrote: >> The issue occurs when trying to link: I run into not having >> definitions for >> what looks like *all* of the wxwidgets C++ symbols, even though >> the ldd >> for libwxc shows that libwx is being linked to. I've pasted an >> attempt to >> compile samples/wxcore/HelloWorld.hs below, as well as the ldd for >> my libwxc. > > I've just discovered that on Debian/Ubuntu, this problem goes away if > I configure wxhaskell --with-opengl Right, that did the trick. What the hell is happening there though? Adding -lwx_gtk2* for all libwx_gtk2* did not fix it, where reconfiguring wxhaskell did... > It seems like this sort of thing should be handled automatically by > wxhaskell though. Seems like one shouldn't have to throw in funny > configure switches just to make something compile. I fully agree. Thanks! Doei, Arthur. -- /\ / | art...@cs... | Work like you don't need the money /__\ / | A friend is someone with whom | Love like you have never been hurt / \/__ | you can dare to be yourself | Dance like there's nobody watching |
From: Eric Y. K. <eri...@gm...> - 2007-01-20 23:51:16
|
On Fri, Jan 19, 2007 at 18:05:53 +0100, Arthur van Leeuwen wrote: > The issue occurs when trying to link: I run into not having =20 > definitions for > what looks like *all* of the wxwidgets C++ symbols, even though the ldd > for libwxc shows that libwx is being linked to. I've pasted an =20 > attempt to > compile samples/wxcore/HelloWorld.hs below, as well as the ldd for > my libwxc. I've just discovered that on Debian/Ubuntu, this problem goes away if I configure wxhaskell --with-opengl There's this one library it's not linking to if you don't throw this switch in. (for me, it's -lwx_gtk2u_gl-2.6) Does that help? It seems like this sort of thing should be handled automatically by wxhaskell though. Seems like one shouldn't have to throw in funny configure switches just to make something compile. --=20 Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon fran=E7ais. |
From: Eric Y. K. <eri...@gm...> - 2007-01-20 23:42:24
|
Hi, On Fri, Jan 12, 2007 at 02:13:42 +0900, shelarcy wrote: > I made patch that merge wxSTC (wxStyledTextCntrl) support from Haste=20 > project. I haven't had time to look into this very carefully. It compiles on my Mac, although it produces a lot of warnings like wxc/src/stc_gen.cpp:1336: warning: converting to non-pointer type =E2=80=98= int=E2=80=99 from NULL wxc/src/stc_gen.cpp: In function =E2=80=98int wxStyledTextCtrl_GetLastChild= (void*, int, int)=E2=80=99: But if I understand correctly, this doesn't have much effect if you don't compile --with-stc. I'm also a bit unsure about these kinds of not-very-universal features to wxhaskell proper. It seems like there should be a better way to provide wrappers for 3rd party wxWidgets controls. Anyway, I'm pushing this in. I could always roll it back or something if it causes problems. --=20 Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon fran=C3=A7ais. |
From: Eric K. <eri...@lo...> - 2007-01-20 23:23:14
|
Partially resending because something (mail server?) somewhere didn't seem to like my one big patch bundle with 1.5M of images from the homepage. I'll push those in separately when I add these. Sat Jan 20 23:13:04 CET 2007 Eric Kow <eri...@lo...> * Add wxhaskell homepage files (main html, css only). = I took the liberty of running dos2unix on these. = Sat Jan 20 23:16:19 CET 2007 Eric Kow <eri...@lo...> * Remove counter code from homepage. = This counter has an pop-up ads, which is rather obnoxious. = Sun Jan 21 00:14:03 CET 2007 Eric Kow <eri...@lo...> * Announce new maintainers, darcs (homepage). |
From: Eric K. <eri...@lo...> - 2007-01-20 23:16:01
|
Sat Jan 20 23:59:14 CET 2007 Eric Kow <eri...@lo...> * Modify wx-install so it doesn't accidentally recompile things. = |
From: Eric K. <eri...@lo...> - 2007-01-20 23:15:12
|
Sat Jan 20 22:21:46 CET 2007 Eric Kow <eri...@lo...> * Add an etc/ directory for misc use. Sat Jan 20 23:12:23 CET 2007 Eric Kow <eri...@lo...> * Use a custom boring file. (Right now just the darcs default) Sat Jan 20 23:12:35 CET 2007 Eric Kow <eri...@lo...> * Add some wxhaskell-specifile boring file regexps. |
From: Arthur v. L. <art...@cs...> - 2007-01-19 17:06:04
|
Hello all, recently I've been trying to build Dazzle again, using GHC 6.6 and wxhaskell 0.10.1 (from the darcs HEAD at darcs.haskell.org). While wxhaskell seems to install without a hitch on my Fedora Core 6 machine, it does not want to function at all. The issue occurs when trying to link: I run into not having definitions for what looks like *all* of the wxwidgets C++ symbols, even though the ldd for libwxc shows that libwx is being linked to. I've pasted an attempt to compile samples/wxcore/HelloWorld.hs below, as well as the ldd for my libwxc. Can anybody try to enlighten me as to what might be wrong? With regards, Arthur van Leeuwen. [root@skirrid wxcore]# ldd /usr/lib/libwxc-gtk2.6.3-0.10.1.so linux-gate.so.1 => (0x00d90000) libwx_gtk2u_xrc-2.6.so.0 => /usr/lib/libwx_gtk2u_xrc-2.6.so. 0 (0x009f9000) libwx_gtk2u_qa-2.6.so.0 => /usr/lib/libwx_gtk2u_qa-2.6.so.0 (0x00110000) libwx_gtk2u_html-2.6.so.0 => /usr/lib/ libwx_gtk2u_html-2.6.so.0 (0x00aa9000) libwx_gtk2u_adv-2.6.so.0 => /usr/lib/libwx_gtk2u_adv-2.6.so. 0 (0x00c77000) libwx_gtk2u_core-2.6.so.0 => /usr/lib/ libwx_gtk2u_core-2.6.so.0 (0x003b2000) libwx_baseu_xml-2.6.so.0 => /usr/lib/libwx_baseu_xml-2.6.so. 0 (0x00e38000) libwx_baseu_net-2.6.so.0 => /usr/lib/libwx_baseu_net-2.6.so. 0 (0x00269000) libwx_baseu-2.6.so.0 => /usr/lib/libwx_baseu-2.6.so.0 (0x006a7000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00296000) libm.so.6 => /lib/libm.so.6 (0x001fb000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00e77000) libpthread.so.0 => /lib/libpthread.so.0 (0x00f5e000) libc.so.6 => /lib/libc.so.6 (0x007e1000) libz.so.1 => /usr/lib/libz.so.1 (0x00f0a000) libdl.so.2 => /lib/libdl.so.2 (0x00dcf000) libgtk-x11-2.0.so.0 => /usr/lib/libgtk-x11-2.0.so.0 (0x00fa3000) libgdk-x11-2.0.so.0 => /usr/lib/libgdk-x11-2.0.so.0 (0x0091e000) libatk-1.0.so.0 => /usr/lib/libatk-1.0.so.0 (0x00222000) libgdk_pixbuf-2.0.so.0 => /usr/lib/libgdk_pixbuf-2.0.so.0 (0x0023e000) libpango-1.0.so.0 => /usr/lib/libpango-1.0.so.0 (0x009ab000) libgobject-2.0.so.0 => /lib/libgobject-2.0.so.0 (0x00b36000) libgmodule-2.0.so.0 => /lib/libgmodule-2.0.so.0 (0x00130000) libgthread-2.0.so.0 => /lib/libgthread-2.0.so.0 (0x00de4000) libglib-2.0.so.0 => /lib/libglib-2.0.so.0 (0x00b75000) libXinerama.so.1 => /usr/lib/libXinerama.so.1 (0x00dba000) libpng12.so.0 => /usr/lib/libpng12.so.0 (0x0037e000) libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0x00a7e000) libtiff.so.3 => /usr/lib/libtiff.so.3 (0x00c13000) libSDL-1.2.so.0 => /usr/lib/libSDL-1.2.so.0 (0x0776d000) libexpat.so.0 => /lib/libexpat.so.0 (0x00d19000) /lib/ld-linux.so.2 (0x00f88000) libpangocairo-1.0.so.0 => /usr/lib/libpangocairo-1.0.so.0 (0x00255000) libX11.so.6 => /usr/lib/libX11.so.6 (0x065bf000) libcairo.so.2 => /usr/lib/libcairo.so.2 (0x00e83000) libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0x00d3a000) libXext.so.6 => /usr/lib/libXext.so.6 (0x00d69000) libXrender.so.1 => /usr/lib/libXrender.so.1 (0x0025e000) libXi.so.6 => /usr/lib/libXi.so.6 (0x003a4000) libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0x003ac000) libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0x009ea000) libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0x009f4000) librt.so.1 => /lib/librt.so.1 (0x00aa0000) libesd.so.0 => /usr/lib/libesd.so.0 (0x00c6b000) libaudiofile.so.0 => /usr/lib/libaudiofile.so.0 (0x00de9000) libpangoft2-1.0.so.0 => /usr/lib/libpangoft2-1.0.so.0 (0x00e41000) libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0x054fd000) libXau.so.6 => /usr/lib/libXau.so.6 (0x00134000) libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0x00d79000) libasound.so.2 => /lib/libasound.so.2 (0x060b8000) [root@skirrid wxcore]# [root@skirrid wxcore]# ghc -v4 -package wxcore HelloWorld.hs -o hellworld Glasgow Haskell Compiler, Version 6.6, for Haskell 98, compiled by GHC version 6.6 Using package config file: /usr/lib/ghc-6.6/package.conf wired-in package base mapped to base-2.0 wired-in package rts mapped to rts-1.0 wired-in package haskell98 mapped to haskell98-1.0 wired-in package template-haskell mapped to template-haskell-2.0 name: rts version: license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: hidden-modules: import-dirs: library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSrts extra-libraries: m gmp dl rt extra-ghci-libraries: include-dirs: /usr/lib/ghc-6.6/include includes: Stg.h depends: hugs-options: cc-options: ld-options: -u base_GHCziBase_Izh_static_info -u base_GHCziBase_Czh_static_info -u base_GHCziFloat_Fzh_static_info -u base_GHCziFloat_Dzh_static_info -u base_GHCziPtr_Ptr_static_info -u base_GHCziWord_Wzh_static_info -u base_GHCziInt_I8zh_static_info -u base_GHCziInt_I16zh_static_info -u base_GHCziInt_I32zh_static_info -u base_GHCziInt_I64zh_static_info -u base_GHCziWord_W8zh_static_info -u base_GHCziWord_W16zh_static_info -u base_GHCziWord_W32zh_static_info -u base_GHCziWord_W64zh_static_info -u base_GHCziStable_StablePtr_static_info -u base_GHCziBase_Izh_con_info -u base_GHCziBase_Czh_con_info -u base_GHCziFloat_Fzh_con_info -u base_GHCziFloat_Dzh_con_info -u base_GHCziPtr_Ptr_con_info -u base_GHCziPtr_FunPtr_con_info -u base_GHCziStable_StablePtr_con_info -u base_GHCziBase_False_closure -u base_GHCziBase_True_closure -u base_GHCziPack_unpackCString_closure -u base_GHCziIOBase_stackOverflow_closure -u base_GHCziIOBase_heapOverflow_closure -u base_GHCziIOBase_NonTermination_closure -u base_GHCziIOBase_BlockedOnDeadMVar_closure -u base_GHCziIOBase_BlockedIndefinitely_closure -u base_GHCziIOBase_Deadlock_closure -u base_GHCziIOBase_NestedAtomically_closure -u base_GHCziWeak_runFinalizzerBatch_closure -u base_GHCziConc_ensureIOManagerIsRunning_closure framework-dirs: frameworks: haddock-interfaces: haddock-html: name: base version: license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Control.Applicative Control.Arrow Control.Concurrent Control.Concurrent.Chan Control.Concurrent.MVar Control.Concurrent.QSem Control.Concurrent.QSemN Control.Concurrent.SampleVar Control.Exception Control.Monad Control.Monad.Fix Control.Monad.Instances Control.Monad.ST Control.Monad.ST.Lazy Control.Monad.ST.Strict Control.Parallel Control.Parallel.Strategies Data.Array Data.Array.Base Data.Array.Diff Data.Array.IArray Data.Array.IO Data.Array.IO.Internals Data.Array.MArray Data.Array.ST Data.Array.Storable Data.Array.Unboxed Data.Bits Data.Bool Data.ByteString Data.ByteString.Char8 Data.ByteString.Lazy Data.ByteString.Lazy.Char8 Data.ByteString.Base Data.ByteString.Fusion Data.Char Data.Complex Data.Dynamic Data.Either Data.Eq Data.Fixed Data.Foldable Data.FunctorM Data.Generics Data.Generics.Aliases Data.Generics.Basics Data.Generics.Instances Data.Generics.Schemes Data.Generics.Text Data.Generics.Twins Data.Graph Data.HashTable Data.IORef Data.Int Data.IntMap Data.IntSet Data.Ix Data.List Data.Maybe Data.Map Data.Monoid Data.Ord Data.PackedString Data.Queue Data.Ratio Data.STRef Data.STRef.Lazy Data.STRef.Strict Data.Sequence Data.Set Data.Traversable Data.Tree Data.Tuple Data.Typeable Data.Unique Data.Version Data.Word Debug.Trace Foreign Foreign.C Foreign.C.Error Foreign.C.String Foreign.C.Types Foreign.Concurrent Foreign.ForeignPtr Foreign.Marshal Foreign.Marshal.Alloc Foreign.Marshal.Array Foreign.Marshal.Error Foreign.Marshal.Pool Foreign.Marshal.Utils Foreign.Ptr Foreign.StablePtr Foreign.Storable GHC.ConsoleHandler GHC.Dotnet GHC.Dynamic GHC.Exts GHC.ForeignPtr GHC.Handle GHC.IO GHC.Int GHC.PArr GHC.PrimopWrappers GHC.Unicode GHC.Word Numeric Prelude System.Cmd System.Console.GetOpt System.CPUTime System.Directory System.Directory.Internals System.Environment System.Exit System.IO System.IO.Error System.IO.Unsafe System.Info System.Locale System.Mem System.Mem.StableName System.Mem.Weak System.Posix.Internals System.Posix.Signals System.Posix.Types System.Process System.Process.Internals System.Random System.Time Text.ParserCombinators.ReadP Text.ParserCombinators.ReadPrec Text.PrettyPrint Text.PrettyPrint.HughesPJ Text.Printf Text.Read Text.Read.Lex Text.Show Text.Show.Functions GHC.Arr GHC.Base GHC.Conc GHC.Enum GHC.Err GHC.Exception GHC.Float GHC.IOBase GHC.List GHC.Num GHC.Pack GHC.Prim GHC.Ptr GHC.Read GHC.Real GHC.ST GHC.STRef GHC.Show GHC.Stable GHC.Storable GHC.TopHandler GHC.Weak hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSbase extra-libraries: HSbase_cbits extra-ghci-libraries: include-dirs: /usr/lib/ghc-6.6/include includes: HsBase.h depends: rts hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/base/base.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/base name: haskell98 version: license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Array Bits CError CForeign CPUTime CString CTypes Char Complex Directory ForeignPtr IO Int Ix List Locale MarshalAlloc MarshalArray MarshalError MarshalUtils Maybe Monad Ptr Random Ratio StablePtr Storable System Time Word hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HShaskell98 extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/haskell98/ haskell98.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/haskell98 name: template-haskell version: license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Language.Haskell.TH.PprLib Language.Haskell.TH.Lib Language.Haskell.TH.Ppr Language.Haskell.TH.Syntax Language.Haskell.TH hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HStemplate-haskell extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/template- haskell/template-haskell.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/template-haskell name: readline version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: System.Console.Readline System.Console.SimpleLineEditor hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSreadline extra-libraries: readline ncurses extra-ghci-libraries: include-dirs: /usr/lib/ghc-6.6/include includes: HsReadline.h depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/readline/ readline.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/readline name: regex-base version: 0.71 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Text.Regex.Base Text.Regex.Base.RegexLike Text.Regex.Base.Context Text.Regex.Base.Impl hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSregex-base extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/regex-base/ regex-base.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/regex-base name: regex-posix version: 0.71 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Text.Regex.Posix Text.Regex.Posix.String Text.Regex.Posix.ByteString Text.Regex.Posix.Wrap hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSregex-posix extra-libraries: extra-ghci-libraries: include-dirs: /usr/lib/ghc-6.6/include includes: depends: base regex-base-0.71 hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/regex-posix/ regex-posix.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/regex-posix name: regex-compat version: 0.71 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Text.Regex hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSregex-compat extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base regex-base-0.71 regex-posix-0.71 hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/regex-compat/ regex-compat.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/regex-compat name: parsec version: 2.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Text.ParserCombinators.Parsec.Error Text.ParserCombinators.Parsec.Char Text.ParserCombinators.Parsec.Combinator Text.ParserCombinators.Parsec.Expr Text.ParserCombinators.Parsec.Language Text.ParserCombinators.Parsec.Perm Text.ParserCombinators.Parsec.Pos Text.ParserCombinators.Parsec.Prim Text.ParserCombinators.Parsec.Token Text.ParserCombinators.Parsec hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSparsec extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/parsec/ parsec.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/parsec name: Cabal version: 1.1.6 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Distribution.Compat.ReadP Distribution.Compiler Distribution.Extension Distribution.InstalledPackageInfo Distribution.License Distribution.Make Distribution.Package Distribution.PackageDescription Distribution.ParseUtils Distribution.PreProcess Distribution.PreProcess.Unlit Distribution.Program Distribution.Setup Distribution.Simple Distribution.Version Distribution.Simple.Build Distribution.Simple.Configure Distribution.Simple.GHC Distribution.Simple.GHCPackageConfig Distribution.Simple.Hugs Distribution.Simple.Install Distribution.Simple.JHC Distribution.Simple.LocalBuildInfo Distribution.Simple.NHC Distribution.Simple.Register Distribution.Simple.SrcDist Distribution.Simple.Utils Language.Haskell.Extension hidden-modules: Distribution.GetOpt Distribution.Compat.Map Distribution.Compat.Exception Distribution.Compat.RawSystem Distribution.Compat.FilePath Distribution.Compat.Directory import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSCabal extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/Cabal/ Cabal.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/Cabal name: unix version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: System.Posix System.Posix.DynamicLinker.Module System.Posix.DynamicLinker.Prim System.Posix.Directory System.Posix.DynamicLinker System.Posix.Env System.Posix.Error System.Posix.Files System.Posix.IO System.Posix.Process System.Posix.Resource System.Posix.Temp System.Posix.Terminal System.Posix.Time System.Posix.Unistd System.Posix.User System.Posix.Signals.Exts hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSunix extra-libraries: HSunix_cbits dl extra-ghci-libraries: include-dirs: /usr/lib/ghc-6.6/include includes: HsUnix.h depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/unix/unix.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/unix name: stm version: 2.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Control.Concurrent.STM Control.Concurrent.STM.TVar Control.Concurrent.STM.TArray Control.Concurrent.STM.TChan Control.Concurrent.STM.TMVar Control.Monad.STM hidden-modules: import-dirs: /usr/lib/ghc-6.6/imports library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSstm extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/stm/stm.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/stm name: ghc version: 6.6 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: False exposed-modules: AsmCodeGen Bag BasicTypes BinIface Binary BitSet Bitmap BuildTyCl ByteCodeAsm ByteCodeFFI ByteCodeGen ByteCodeInstr ByteCodeItbls ByteCodeLink CLabel CSE CgBindery CgCallConv CgCase CgClosure CgCon CgExpr CgForeignCall CgHeapery CgInfoTbls CgLetNoEscape CgMonad CgParallel CgPrimOp CgProf CgStackery CgTailCall CgTicky CgUtils Check Class ClosureInfo CmdLineParser Cmm CmmLex CmmLint CmmParse CmmUtils CodeGen CodeOutput Config Constants Convert CoreFVs CoreLint CorePrep CoreSubst CoreSyn CoreTidy CoreToStg CoreUnfold CoreUtils CostCentre CprAnalyse Ctype DataCon Demand Desugar Digraph DmdAnal DriverMkDepend DriverPhases DriverPipeline DsArrows DsBinds DsCCall DsExpr DsForeign DsGRHSs DsListComp DsMeta DsMonad DsUtils DynFlags ErrUtils ExternalCore FastMutInt Encoding FastString FastTypes FieldLabel Finder FiniteMap FlattenInfo FlattenMonad Flattening FloatIn FloatOut ForeignCall FunDeps GHC Generics HeaderInfo HsBinds HsDecls HsExpr HsImpExp HsLit HsPat HsSyn HsTypes HsUtils HscMain HscStats HscTypes IOEnv Id IdInfo IfaceEnv IfaceSyn IfaceType IlxGen Inst InstEnv Java JavaGen InteractiveUI Kind Lexer LexCore LiberateCase Linker ListSetOps Literal LoadIface MachCodeGen MachInstrs MachOp MachRegs Match MatchCon MatchLit Maybes MkExternalCore MkId MkIface Module NCGMonad NDPCoreUtils Name NameEnv NameSet NewDemand ObjLink OccName OccurAnal OrdList Outputable PArrAnal PackageConfig Packages Panic Parser ParserCoreUtils ParsePkgConf PositionIndependentCode PprC PprCmm PprCore PprExternalCore PprMach PprTyThing PrelInfo PrelNames PrintJava PrelRules Pretty PrimOp RdrHsSyn RdrName RegAllocInfo RegisterAlloc RnBinds RnEnv RnExpr RnHsSyn RnNames RnSource RnTypes Rules SAT SATMonad SCCfinal SMRep SRT SaAbsInt SaLib SetLevels SimplCore SimplEnv SimplMonad SimplStg SimplUtils Simplify SpecConstr Specialise SrcLoc StaticFlags StgLint StgStats StgSyn StrictAnal StringBuffer SysTools TcArrows TcBinds TcClassDcl TcDefaults TcDeriv TcEnv TcExpr TcForeign TcGenDeriv TcHsSyn TcHsType TcIface TcInstDcls TcMType TcMatches TcPat TcRnDriver TcRnMonad TcRnTypes TcRules TcSimplify TcSplice TcTyClsDecls TcTyDecls TcType TcUnify TidyPgm TyCon Type TypeRep TysPrim TysWiredIn Unify UniqFM UniqSet UniqSupply Unique Util Var VarEnv VarSet WorkWrap WwLib hidden-modules: import-dirs: /usr/lib/ghc-6.6/hslibs-imports/ghc library-dirs: /usr/lib/ghc-6.6 hs-libraries: HSghc extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: template-haskell readline-1.0 unix-1.0 Cabal-1.1.6 regex-compat-0.71 base haskell98 hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/share/ghc-6.6/html/libraries/ghc/ghc.haddock haddock-html: /usr/share/ghc-6.6/html/libraries/ghc name: arrows version: 0.2 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Control.Arrow.Operations Control.Arrow.Transformer.Automaton Control.Arrow.Transformer.CoState Control.Arrow.Transformer.Error Control.Arrow.Transformer.State Control.Arrow.Transformer.Static Control.Arrow.Transformer.Stream Control.Arrow.Transformer.Writer Control.Arrow.Transformer.Reader Control.Arrow.Transformer.All Control.Arrow.Transformer Data.Stream hidden-modules: Control.Arrow.Internals import-dirs: /usr/local/lib/arrows-0.2/ghc-6.6 library-dirs: /usr/local/lib/arrows-0.2/ghc-6.6 hs-libraries: HSarrows-0.2 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/arrows-0.2/ghc-6.6/include includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/arrows-0.2/doc/html/arrows.haddock haddock-html: /usr/local/share/arrows-0.2/doc/html name: haskell-src version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Language.Haskell.Lexer Language.Haskell.Parser Language.Haskell.ParseMonad Language.Haskell.Pretty Language.Haskell.Syntax Language.Haskell.ParseUtils hidden-modules: import-dirs: /usr/local/lib/haskell-src-1.0/ghc-6.6 library-dirs: /usr/local/lib/haskell-src-1.0/ghc-6.6 hs-libraries: HShaskell-src-1.0 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/haskell-src-1.0/ghc-6.6/include includes: depends: base haskell98 hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/haskell-src-1.0/doc/html/haskell- src.haddock haddock-html: /usr/local/share/haskell-src-1.0/doc/html name: html version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Text.Html Text.Html.BlockTable hidden-modules: import-dirs: /usr/local/lib/html-1.0/ghc-6.6 library-dirs: /usr/local/lib/html-1.0/ghc-6.6 hs-libraries: HShtml-1.0 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/html-1.0/ghc-6.6/include includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/html-1.0/doc/html/html.haddock haddock-html: /usr/local/share/html-1.0/doc/html name: HUnit version: 1.1 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Test.HUnit.Base Test.HUnit.Lang Test.HUnit.Terminal Test.HUnit.Text Test.HUnit hidden-modules: import-dirs: /usr/local/lib/HUnit-1.1/ghc-6.6 library-dirs: /usr/local/lib/HUnit-1.1/ghc-6.6 hs-libraries: HSHUnit-1.1 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/HUnit-1.1/ghc-6.6/include includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/HUnit-1.1/doc/html/HUnit.haddock haddock-html: /usr/local/share/HUnit-1.1/doc/html name: mtl version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Control.Monad.Error Control.Monad.Cont Control.Monad.Identity Control.Monad.List Control.Monad.RWS Control.Monad.Reader Control.Monad.State Control.Monad.Trans Control.Monad.Writer hidden-modules: import-dirs: /usr/local/lib/mtl-1.0/ghc-6.6 library-dirs: /usr/local/lib/mtl-1.0/ghc-6.6 hs-libraries: HSmtl-1.0 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/mtl-1.0/ghc-6.6/include includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/mtl-1.0/doc/html/mtl.haddock haddock-html: /usr/local/share/mtl-1.0/doc/html name: network version: 2.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Network Network.BSD Network.Socket Network.URI hidden-modules: import-dirs: /usr/local/lib/network-2.0/ghc-6.6 library-dirs: /usr/local/lib/network-2.0/ghc-6.6 hs-libraries: HSnetwork-2.0 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/network-2.0/ghc-6.6/include includes: HsNet.h HsNetworkConfig.h depends: base parsec-2.0 hugs-options: cc-options: -DCALLCONV=ccall ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/network-2.0/doc/html/ network.haddock haddock-html: /usr/local/share/network-2.0/doc/html name: OpenGL version: 2.1 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Graphics.Rendering.OpenGL.GL.Antialiasing Graphics.Rendering.OpenGL.GL.BasicTypes Graphics.Rendering.OpenGL.GL.BeginEnd Graphics.Rendering.OpenGL.GL.Bitmaps Graphics.Rendering.OpenGL.GL.BufferObjects Graphics.Rendering.OpenGL.GL.Clipping Graphics.Rendering.OpenGL.GL.Colors Graphics.Rendering.OpenGL.GL.ColorSum Graphics.Rendering.OpenGL.GL.CoordTrans Graphics.Rendering.OpenGL.GL.DisplayLists Graphics.Rendering.OpenGL.GL.Evaluators Graphics.Rendering.OpenGL.GL.Feedback Graphics.Rendering.OpenGL.GL.FlushFinish Graphics.Rendering.OpenGL.GL.Fog Graphics.Rendering.OpenGL.GL.Framebuffer Graphics.Rendering.OpenGL.GL.Hints Graphics.Rendering.OpenGL.GL Graphics.Rendering.OpenGL.GL.LineSegments Graphics.Rendering.OpenGL.GL.PerFragment Graphics.Rendering.OpenGL.GL.PixelRectangles.ColorTable Graphics.Rendering.OpenGL.GL.PixelRectangles.Convolution Graphics.Rendering.OpenGL.GL.PixelRectangles.Histogram Graphics.Rendering.OpenGL.GL.PixelRectangles Graphics.Rendering.OpenGL.GL.PixelRectangles.Minmax Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelMap Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelStorage Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelTransfer Graphics.Rendering.OpenGL.GL.PixelRectangles.Rasterization Graphics.Rendering.OpenGL.GL.Points Graphics.Rendering.OpenGL.GL.Polygons Graphics.Rendering.OpenGL.GL.RasterPos Graphics.Rendering.OpenGL.GL.ReadCopyPixels Graphics.Rendering.OpenGL.GL.Rectangles Graphics.Rendering.OpenGL.GL.SavingState Graphics.Rendering.OpenGL.GL.Selection Graphics.Rendering.OpenGL.GL.StateVar Graphics.Rendering.OpenGL.GL.StringQueries Graphics.Rendering.OpenGL.GL.Texturing.Application Graphics.Rendering.OpenGL.GL.Texturing.Environments Graphics.Rendering.OpenGL.GL.Texturing Graphics.Rendering.OpenGL.GL.Texturing.Objects Graphics.Rendering.OpenGL.GL.Texturing.Parameters Graphics.Rendering.OpenGL.GL.Texturing.Queries Graphics.Rendering.OpenGL.GL.Texturing.Specification Graphics.Rendering.OpenGL.GLU.Errors Graphics.Rendering.OpenGL.GLU Graphics.Rendering.OpenGL.GLU.Initialization Graphics.Rendering.OpenGL.GLU.Matrix Graphics.Rendering.OpenGL.GLU.Mipmapping Graphics.Rendering.OpenGL.GLU.NURBS Graphics.Rendering.OpenGL.GLU.Quadrics Graphics.Rendering.OpenGL.GLU.Tessellation Graphics.Rendering.OpenGL.GL.VertexArrays Graphics.Rendering.OpenGL.GL.VertexSpec Graphics.Rendering.OpenGL hidden-modules: Graphics.Rendering.OpenGL.GL.BlendingFactor Graphics.Rendering.OpenGL.GL.BufferMode Graphics.Rendering.OpenGL.GL.Capability Graphics.Rendering.OpenGL.GL.ComparisonFunction Graphics.Rendering.OpenGL.GL.DataType Graphics.Rendering.OpenGL.GL.EdgeFlag Graphics.Rendering.OpenGL.GL.Exception Graphics.Rendering.OpenGL.GL.Extensions Graphics.Rendering.OpenGL.GL.Face Graphics.Rendering.OpenGL.GL.GLboolean Graphics.Rendering.OpenGL.GL.IOState Graphics.Rendering.OpenGL.GL.PeekPoke Graphics.Rendering.OpenGL.GL.PixelData Graphics.Rendering.OpenGL.GL.PixelFormat Graphics.Rendering.OpenGL.GL.PixelRectangles.Reset Graphics.Rendering.OpenGL.GL.PixelRectangles.Sink Graphics.Rendering.OpenGL.GL.PointParameter Graphics.Rendering.OpenGL.GL.PolygonMode Graphics.Rendering.OpenGL.GL.PrimitiveMode Graphics.Rendering.OpenGL.GL.QueryUtils Graphics.Rendering.OpenGL.GL.RenderMode Graphics.Rendering.OpenGL.GL.Texturing.PixelInternalFormat Graphics.Rendering.OpenGL.GL.Texturing.TexParameter Graphics.Rendering.OpenGL.GL.Texturing.TextureTarget Graphics.Rendering.OpenGL.GL.Texturing.TextureUnit Graphics.Rendering.OpenGL.GLU.ErrorsInternal import-dirs: /usr/local/lib/OpenGL-2.1/ghc-6.6 library-dirs: /usr/local/lib/OpenGL-2.1/ghc-6.6 hs-libraries: HSOpenGL-2.1 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/OpenGL-2.1/ghc-6.6/include includes: HsOpenGL.h depends: base hugs-options: cc-options: -DCALLCONV=ccall ld-options: -lGLU -lGL -lm framework-dirs: frameworks: haddock-interfaces: /usr/local/share/OpenGL-2.1/doc/html/OpenGL.haddock haddock-html: /usr/local/share/OpenGL-2.1/doc/html name: QuickCheck version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Debug.QuickCheck.Batch Debug.QuickCheck.Poly Debug.QuickCheck.Utils Debug.QuickCheck Test.QuickCheck.Batch Test.QuickCheck.Poly Test.QuickCheck.Utils Test.QuickCheck hidden-modules: import-dirs: /usr/local/lib/QuickCheck-1.0/ghc-6.6 library-dirs: /usr/local/lib/QuickCheck-1.0/ghc-6.6 hs-libraries: HSQuickCheck-1.0 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/QuickCheck-1.0/ghc-6.6/include includes: depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/QuickCheck-1.0/doc/html/ QuickCheck.haddock haddock-html: /usr/local/share/QuickCheck-1.0/doc/html name: time version: 1.0 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Data.Time.Calendar Data.Time.Calendar.MonthDay Data.Time.Calendar.OrdinalDate Data.Time.Calendar.WeekDate Data.Time.Calendar.Julian Data.Time.Calendar.Easter Data.Time.Clock Data.Time.Clock.POSIX Data.Time.Clock.TAI Data.Time.LocalTime Data.Time hidden-modules: Data.Time.Calendar.Private Data.Time.Calendar.Days Data.Time.Calendar.Gregorian Data.Time.Calendar.JulianYearDay Data.Time.Clock.Scale Data.Time.Clock.UTC Data.Time.Clock.CTimeval Data.Time.Clock.UTCDiff Data.Time.LocalTime.TimeZone Data.Time.LocalTime.TimeOfDay Data.Time.LocalTime.LocalTime Data.Time.LocalTime.Format import-dirs: /usr/local/lib/time-1.0/ghc-6.6 library-dirs: /usr/local/lib/time-1.0/ghc-6.6 hs-libraries: HStime-1.0 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/time-1.0/ghc-6.6/include includes: HsTime.h HsTimeConfig.h depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/time-1.0/doc/html/time.haddock haddock-html: /usr/local/share/time-1.0/doc/html name: X11 version: 1.2 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Graphics.X11 Graphics.X11.Types Graphics.X11.Xlib Graphics.X11.Xlib.Atom Graphics.X11.Xlib.Color Graphics.X11.Xlib.Context Graphics.X11.Xlib.Display Graphics.X11.Xlib.Event Graphics.X11.Xlib.Font Graphics.X11.Xlib.Misc Graphics.X11.Xlib.Region Graphics.X11.Xlib.Screen Graphics.X11.Xlib.Types Graphics.X11.Xlib.Window hidden-modules: import-dirs: /usr/local/lib/X11-1.2/ghc-6.6 library-dirs: /usr/local/lib/X11-1.2/ghc-6.6 hs-libraries: HSX11-1.2 extra-libraries: X11 extra-ghci-libraries: include-dirs: /usr/local/lib/X11-1.2/ghc-6.6/include includes: HsXlib.h depends: base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/X11-1.2/doc/html/X11.haddock haddock-html: /usr/local/share/X11-1.2/doc/html name: xhtml version: 2006.9.13 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Text.XHtml Text.XHtml.Frameset Text.XHtml.Strict Text.XHtml.Transitional Text.XHtml.Debug Text.XHtml.Table hidden-modules: Text.XHtml.Strict.Attributes Text.XHtml.Strict.Elements Text.XHtml.Frameset.Attributes Text.XHtml.Frameset.Elements Text.XHtml.Transitional.Attributes Text.XHtml.Transitional.Elements Text.XHtml.BlockTable Text.XHtml.Extras Text.XHtml.Internals import-dirs: /usr/local/lib/xhtml-2006.9.13/ghc-6.6 library-dirs: /usr/local/lib/xhtml-2006.9.13/ghc-6.6 hs-libraries: HSxhtml-2006.9.13 extra-libraries: extra-ghci-libraries: include-dirs: /usr/local/lib/xhtml-2006.9.13/ghc-6.6/include includes: depends: haskell98 base hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: /usr/local/share/xhtml-2006.9.13/doc/html/ xhtml.haddock haddock-html: /usr/local/share/xhtml-2006.9.13/doc/html name: wxcore version: 0.10.1 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Graphics.UI.WXCore Graphics.UI.WXCore.WxcClasses Graphics.UI.WXCore.WxcClassInfo Graphics.UI.WXCore.WxcDefs Graphics.UI.WXCore.IntMap Graphics.UI.WXCore.Types Graphics.UI.WXCore.Defines Graphics.UI.WXCore.Draw Graphics.UI.WXCore.Events Graphics.UI.WXCore.Frame Graphics.UI.WXCore.Layout Graphics.UI.WXCore.Process Graphics.UI.WXCore.Print Graphics.UI.WXCore.Dialogs Graphics.UI.WXCore.Image Graphics.UI.WXCore.Controls Graphics.UI.WXCore.Db Graphics.UI.WXCore.OpenGL Graphics.UI.WXCore.WxcObject Graphics.UI.WXCore.WxcClassTypes Graphics.UI.WXCore.WxcTypes Graphics.UI.WXCore.WxcClassesAL Graphics.UI.WXCore.WxcClassesMZ hidden-modules: import-dirs: /usr/lib/imports library-dirs: /usr/lib hs-libraries: wxcore wxcore0 wxcore1 wxcore2 extra-libraries: wxc-gtk2.6.3-0.10.1 extra-ghci-libraries: include-dirs: includes: depends: base haskell98 hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: haddock-html: name: wx version: 0.10.1 license: AllRightsReserved copyright: maintainer: stability: homepage: package-url: description: category: author: exposed: True exposed-modules: Graphics.UI.WX Graphics.UI.WX.Types Graphics.UI.WX.Attributes Graphics.UI.WX.Layout Graphics.UI.WX.Classes Graphics.UI.WX.Variable Graphics.UI.WX.Events Graphics.UI.WX.Window Graphics.UI.WX.Frame Graphics.UI.WX.Media Graphics.UI.WX.Menu Graphics.UI.WX.Timer Graphics.UI.WX.Draw Graphics.UI.WX.Controls Graphics.UI.WX.Dialogs hidden-modules: import-dirs: /usr/lib/imports library-dirs: /usr/lib hs-libraries: wx extra-libraries: extra-ghci-libraries: include-dirs: includes: depends: wxcore-0.10.1 hugs-options: cc-options: ld-options: framework-dirs: frameworks: haddock-interfaces: haddock-html: Hsc static flags: -static Created temporary directory: /tmp/ghc13954_0 *** Checking old interface for main:Main: compilation IS NOT required *** Touching object file: touch HelloWorld.o *** Linker: gcc -v -o hellworld -DDONT_WANT_WIN32_DLL_SUPPORT HelloWorld.o -L/usr/ lib -L/usr/lib/ghc-6.6 -lwxcore -lwxcore0 -lwxcore1 -lwxcore2 -lwxc- gtk2.6.3-0.10.1 -lHShaskell98 -lHSbase -lHSbase_cbits -lHSrts -lm - lgmp -ldl -lrt -u base_GHCziBase_Izh_static_info -u base_GHCziBase_Czh_static_info -u base_GHCziFloat_Fzh_static_info -u base_GHCziFloat_Dzh_static_info -u base_GHCziPtr_Ptr_static_info -u base_GHCziWord_Wzh_static_info -u base_GHCziInt_I8zh_static_info -u base_GHCziInt_I16zh_static_info -u base_GHCziInt_I32zh_static_info -u base_GHCziInt_I64zh_static_info -u base_GHCziWord_W8zh_static_info -u base_GHCziWord_W16zh_static_info -u base_GHCziWord_W32zh_static_info - u base_GHCziWord_W64zh_static_info -u base_GHCziStable_StablePtr_static_info -u base_GHCziBase_Izh_con_info -u base_GHCziBase_Czh_con_info -u base_GHCziFloat_Fzh_con_info -u base_GHCziFloat_Dzh_con_info -u base_GHCziPtr_Ptr_con_info -u base_GHCziPtr_FunPtr_con_info -u base_GHCziStable_StablePtr_con_info - u base_GHCziBase_False_closure -u base_GHCziBase_True_closure -u base_GHCziPack_unpackCString_closure -u base_GHCziIOBase_stackOverflow_closure -u base_GHCziIOBase_heapOverflow_closure -u base_GHCziIOBase_NonTermination_closure -u base_GHCziIOBase_BlockedOnDeadMVar_closure -u base_GHCziIOBase_BlockedIndefinitely_closure -u base_GHCziIOBase_Deadlock_closure -u base_GHCziIOBase_NestedAtomically_closure -u base_GHCziWeak_runFinalizzerBatch_closure -u base_GHCziConc_ensureIOManagerIsRunning_closure Using built-in specs. Target: i386-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man -- infodir=/usr/share/info --enable-shared --enable-threads=posix -- enable-checking=release --with-system-zlib --enable-__cxa_atexit -- disable-libunwind-exceptions --enable-libgcj-multifile --enable- languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk -- disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2- gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux Thread model: posix gcc version 4.1.1 20070105 (Red Hat 4.1.1-51) /usr/libexec/gcc/i386-redhat-linux/4.1.1/collect2 --eh-frame-hdr -m elf_i386 --hash-style=gnu -dynamic-linker /lib/ld-linux.so.2 -o hellworld -u base_GHCziBase_Izh_static_info -u base_GHCziBase_Czh_static_info -u base_GHCziFloat_Fzh_static_info -u base_GHCziFloat_Dzh_static_info -u base_GHCziPtr_Ptr_static_info -u base_GHCziWord_Wzh_static_info -u base_GHCziInt_I8zh_static_info -u base_GHCziInt_I16zh_static_info -u base_GHCziInt_I32zh_static_info -u base_GHCziInt_I64zh_static_info -u base_GHCziWord_W8zh_static_info -u base_GHCziWord_W16zh_static_info -u base_GHCziWord_W32zh_static_info - u base_GHCziWord_W64zh_static_info -u base_GHCziStable_StablePtr_static_info -u base_GHCziBase_Izh_con_info -u base_GHCziBase_Czh_con_info -u base_GHCziFloat_Fzh_con_info -u base_GHCziFloat_Dzh_con_info -u base_GHCziPtr_Ptr_con_info -u base_GHCziPtr_FunPtr_con_info -u base_GHCziStable_StablePtr_con_info - u base_GHCziBase_False_closure -u base_GHCziBase_True_closure -u base_GHCziPack_unpackCString_closure -u base_GHCziIOBase_stackOverflow_closure -u base_GHCziIOBase_heapOverflow_closure -u base_GHCziIOBase_NonTermination_closure -u base_GHCziIOBase_BlockedOnDeadMVar_closure -u base_GHCziIOBase_BlockedIndefinitely_closure -u base_GHCziIOBase_Deadlock_closure -u base_GHCziIOBase_NestedAtomically_closure -u base_GHCziWeak_runFinalizzerBatch_closure -u base_GHCziConc_ensureIOManagerIsRunning_closure /usr/lib/gcc/i386- redhat-linux/4.1.1/../../../crt1.o /usr/lib/gcc/i386-redhat-linux/ 4.1.1/../../../crti.o /usr/lib/gcc/i386-redhat-linux/4.1.1/crtbegin.o -L/usr/lib -L/usr/lib/ghc-6.6 -L/usr/lib/gcc/i386-redhat-linux/4.1.1 - L/usr/lib/gcc/i386-redhat-linux/4.1.1 -L/usr/lib/gcc/i386-redhat- linux/4.1.1/../../.. HelloWorld.o -lwxcore -lwxcore0 -lwxcore1 - lwxcore2 -lwxc-gtk2.6.3-0.10.1 -lHShaskell98 -lHSbase -lHSbase_cbits - lHSrts -lm -lgmp -ldl -lrt -lgcc --as-needed -lgcc_s --no-as-needed - lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i386-redhat- linux/4.1.1/crtend.o /usr/lib/gcc/i386-redhat-linux/4.1.1/../../../ crtn.o /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::Hide()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGLCanvas::SwapBuffers()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSetCursorEvent::GetX() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGauge::SetShadowWidth(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::GetAutoLayout() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridSizeEvent::GetPosition()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxIndividualLayoutConstraint::GetMyEdge() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSizerItem::GetRatio() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLongLongNative::operator+(wxLongLongNative const&) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::DisableDragGridSize()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLogChain::PassMessages(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLongLongNative::operator>=(long) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::PopupMenu(wxMenu*, int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLocale::GetString(char const*, char const*) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxJoystickEvent::IsMove() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxHtmlLinkInfo::SetEvent(wxMouseEvent const*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxConfigBase::IsRecordingDefaults() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::GetTable() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxString::operator=(char const*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxImageList::wxImageList(int, int, bool, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSplitterWindow::SetBorderSize(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::GetGridCursorRow()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDialogBase::GetReturnCode() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintData::SetPrintMode(wxPrintMode)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::GetRect() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxEvtHandler::SetEvtHandlerEnabled(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMenuBase::Append(wxMenuItem*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxQueryNewPaletteEvent::SetPaletteRealized(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxFindDialogEvent::GetFlags() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxComboBox::FindString(wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMenuBase::Delete(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDCBase::DrawRotatedText(wxString const&, int, int, double)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridSizer::SetCols(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::DisableCellEditControl()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridCellCoordsArray::wxGridCellCoordsArray()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxHtmlLinkInfo::GetHtmlCell() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPen::operator=(wxPen const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxStringListBase::~wxStringListBase()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::ScreenToClient(wxPoint const&) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSpinButton::wxSpinButton(wxWindow*, int, wxPoint const&, wxSize const&, long, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxControl::wxControl(wxWindow*, int, wxPoint const&, wxSize const&, long, wxValidator const&, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintout::SetDC(wxDC*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxTreeItemId::wxTreeItemId(long)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMenuEvent::GetMenuId() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxTreeCtrl::wxTreeCtrl(wxWindow*, int, wxPoint const&, wxSize const&, long, wxValidator const&, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPageSetupDialogData::GetMarginTopLeft() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSashLayoutWindow::SetOrientation(wxLayoutOrientation)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMenuBase::Insert(unsigned int, int, wxString const&, wxMenu*, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxHelpEvent::GetPosition() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxAppBase::SetExitOnFrameDelete(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxAppBase::SetUseBestVisual(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxScrolledWindow::SetScale(double, double)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGenericDirDialog::GetStyle() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxHelpControllerHelpProvider::SetHelpController(wxHelpControllerBase*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintDialogData::GetSetupDialog() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxObject::GetRefData() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::GetCellHighlightColour()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::GetToolTip() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSplitterWindow::GetWindow2() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxFileDataObjectBase::GetFilenames() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSizerItem::SetInitSize(int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDateTime::FormatDate() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxTextValidator::SetStyle(long)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintDialogData::GetCollate() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGenericMessageDialog::wxGenericMessageDialog(wxWindow*, wxString const&, wxString const&, long, wxPoint const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxClassInfo::GetSize() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintDialogData::SetSetupDialog(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMouseEvent::Dragging() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxShowEvent::GetShow() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxJoystickEvent::SetButtonState(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGetTranslation(char const*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxEntry (int, char**)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintData::SetPaperId(wxPaperSize)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPaletteChangedEvent::SetChangedWindow(wxWindow*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLongLongNative::operator==(wxLongLongNative const&) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxValidator::SetWindow(wxWindowBase*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::HasFlag(int) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLongLongNative::wxLongLongNative(long, unsigned long)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLog::GetTraceMask()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMenuBase::SetParent(wxMenu*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxScrolledWindow::GetTargetWindow()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxKeyEvent::GetKeyCode() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxKeyEvent::GetX() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxWindowBase::GetConstraints() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPageSetupDialogData::SetDefaultMinMargins(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDialogBase::SetReturnCode(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridRangeSelectEvent::GetBottomRightCoords()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxCloseEvent::SetLoggingOff(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPageSetupDialogData::SetPaperId(wxPaperSize)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSizerItem::IsWindow()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxListBox::wxListBox(wxWindow*, int, wxPoint const&, wxSize const&, int, wxString const*, long, wxValidator const&, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::CanDragRowSize()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxHtmlWindow::GetOpenedPage() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGLCanvas::SetCurrent()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLog::Suspend()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLongLongNative::operator+=(wxLongLongNative const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxApp::Dispatch()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGLCanvas::wxGLCanvas(wxWindow*, int, wxPoint const&, wxSize const&, long, wxString const&, int*, wxPalette const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxAppBase::OnFatalException()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrinterBase::GetAbort() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxRadioBox::wxRadioBox(wxWindow*, int, wxString const&, wxPoint const&, wxSize const&, int, wxString const*, int, long, wxValidator const&, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridCellEditor::GetControl()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::GetNumberRows()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSashWindow::SetSashBorder(wxSashEdgePosition, bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMiniFrame::wxMiniFrame(wxWindow*, int, wxString const&, wxPoint const&, wxSize const&, long, wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxMouseEvent::IsButton() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxComboBox::SetClientData(int, void*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxCalendarCtrl::SetHolidayColours(wxColour const&, wxColour const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxObjectListNode::GetData() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxUpdateUIEvent::GetEnabled() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxFontDialog::wxFontDialog(wxWindow*, wxFontData const*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridSizeEvent::ControlDown()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridEvent::ControlDown()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLogWindow::wxLogWindow(wxFrame*, char const*, bool, bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxString::wxString()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSize::GetHeight() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxImage::SetData(unsigned char*, int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxEncodingConverter::Convert(char const*, char*)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxRect::wxRect(int, int, int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintData::SetFilename(wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridCellAttr::DecRef()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxCaretBase::SetSize(int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDCBase::DrawRectangle(int, int, int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintout::GetPPIPrinter(int*, int*) const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSizer::GetChildren()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxAppInitializer::wxAppInitializer(wxObject* (*)())' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxHtmlHelpController::SetTempDir(wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxFindReplaceData::SetReplaceString(wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxImage::wxImage(int, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxIconBundle::wxIconBundle(wxIcon const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxCalendarCtrl::GetHolidayColourFg() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDCBase::GetMapMode() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDCBase::GetBackgroundMode() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLongLongNative::operator=(long long)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDCBase::GetTextForeground()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxProcess::Redirect()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintDialogData::SetMinPage(int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxKeyEvent::ControlDown() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGrid::AutoSizeRow(int, bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxTextAttr::wxTextAttr()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxLayoutAlgorithm::wxLayoutAlgorithm()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxAppBase::CheckBuildOptions(wxBuildOptions const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSplitterWindow::GetWindow1() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxTimerBase::IsOneShot() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxTextDataObject::wxTextDataObject(wxString const&)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxCommandEvent::GetInt() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxEvent::Skip(bool)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintDialogData::GetSelection() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxApp::Initialized()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxSplitterWindow::GetSplitMode() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxBitmap::LoadFile(wxString const&, int)' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPrintDialogData::GetFromPage() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridEvent::ShiftDown()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridEvent::AltDown()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxToolBarBase::GetMargins() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxPageSetupDialogData::GetPaperId() const' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxGridCellCoords::wxGridCellCoords()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxDCBase::GetBrush()' /usr/lib/libwxc-gtk2.6.3-0.10.1.so: undefined reference to `wxObje... [truncated message content] |
From: Eric Y. K. <eri...@gm...> - 2007-01-17 21:40:10
|
Hi Conal, On Tue, Jan 16, 2007 at 00:22:16 -0800, Conal Elliott wrote: > I'm stumped on a problem with horizontal stretching, and I don't know > whether I've hit a bug or my own ignorance. I want to place two sliders > horizontally and have them both stretch with the frame. Instead, the left > one stretches, and the right one doesn't. I ran your code both under MacOS X and Linux, and they both seem to expand the sliders symetrically. Maybe this is a Windows-specific issue? Could somebody else try the code? --=20 Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon fran=E7ais. |
From: Conal E. <co...@co...> - 2007-01-16 08:22:35
|
I'm stumped on a problem with horizontal stretching, and I don't know whether I've hit a bug or my own ignorance. I want to place two sliders horizontally and have them both stretch with the frame. Instead, the left one stretches, and the right one doesn't. (I'm not sure I have "stretch" and "expand" clear in my mind. The right slider gets more space but doesn't fill it up.) One example of this behavior is at http://conal.net/phooey/images/ui3.png. I've also included below a simple, self-contained example. I'd like to get this behavior fixed in two wxhaskell-powered libraries I'm about to release. I'm using "row" to get the horizontal juxtaposition, and hfill.widget for the slider layouts. I'd sure appreciate help from someone who knows about wxHaskell layout. Thanks, - Conal -------- import Graphics.UI.WX main = runWio ssBeside type Wio = Panel () -> IO Layout -- Simple slider sslider :: Wio sslider w = do ctl <- hslider w True 0 10 [] return (hfill (widget ctl)) ssBeside :: Wio ssBeside w = do la <- sslider w lb <- sslider w return (row 0 [la,lb]) -- "Run" a 'Wio': handle frame & widget creation, and apply layout. runWio :: Wio -> IO () runWio wio = start $ do f <- frame [visible := False] pan <- panel f [] l <- wio pan set pan [ layout := l ] set f [ layout := hfill (widget pan), visible := True ] |
From: shelarcy <she...@gm...> - 2007-01-12 05:50:14
|
Hi Rustam, On Thu, 21 Dec 2006 14:30:33 +0900, Rustam Akimov <ru...@gm...> wrote: > I did like this but a got this error message -> > ghc-pkg: dependency lang doesn't exist (use --force to override) > Reading package info from "C:\\haskell\\wxhaskell 2.4.2\\bin\\wx.pkg" ... > done. > ghc-pkg: dependency wxcore-0.9.4 doesn't exist (use --force to override) > error: > Unable to register the package using "ghc-pkg". > Maybe you have an incompatible version of ghc installed? Lang (and any other old) package is removed on GHC 6.6 that is used in Visual Haskell. And Interface file (.hi) is changed by every version now. So you must use GHC 6.6's wxHaskell binary from any other site, or build wxHaskell by hand. I uploaded binary on my project (Kamiariduki)'s file space. So you can use that. Best Regards, -- shelarcy <shelarcy capella.freemail.ne.jp> http://page.freett.com/shelarcy/ |
From: shelarcy <she...@gm...> - 2007-01-12 05:29:38
|
On Fri, 12 Jan 2007 02:13:42 +0900, shelarcy <she...@gm...> wrote: > I used modified (that to support GHC 6.6) version of Haste, to test wxSTC. > It works on Windows, but it terminate program soonly on Mac OS X. > (You can use other features on Mac OS X. So, don't worry about that.) > > And by a few reasons, this support is experimental. > - This support lacks some functionality. > -- See source code comment, you can find it. > - Some useful function implemented in Hastes's source code. > -- I have to move them. I forgot to notice one more awkward point. Current version depends on wxSTC-D3's stc.h. This file is clean-uped version of contrib/include/wx/stc/stc.h. I used this file that used in Hastes' wxSTC support. Because wxdirect's CompileSTC can't parse original file now. CompileSTC can't treat #ifdef pragma. It's not difficult task. Because this pragma separate only one condition - use SWIG or not. Of course we don't use SWIG. Best Regards, -- shelarcy <shelarcy capella.freemail.ne.jp> http://page.freett.com/shelarcy/ |
From: shelarcy <she...@gm...> - 2007-01-11 17:13:50
|
Hello all, I made patch that merge wxSTC (wxStyledTextCntrl) support from Haste project. If you want to use wxSTC, you must use wxWidgets-2.6.x and build contrib's stc library. Then you can build wxHaskell with wxSTC support. If you use wxHaskell on Windows platform (wxMSC), you only build wxc library by Visual Studio. (Of cource, you must build stc library before you build wxc.) If you use other than Windows, you need to use --with-stc option at configuring. ./configure --with-stc It works for building process exactly, but I didn't test wxSTC support works other than Windows platform. I used modified (that to support GHC 6.6) version of Haste, to test wxSTC. It works on Windows, but it terminate program soonly on Mac OS X. (You can use other features on Mac OS X. So, don't worry about that.) And by a few reasons, this support is experimental. - This support lacks some functionality. -- See source code comment, you can find it. - Some useful function implemented in Hastes's source code. -- I have to move them. If you want to modify or extend this support, you want to test stc support I uploaded my modified version of Haste in Kamiariduki's space. So you can download that. https://sourceforge.net/project/showfiles.php?group_id=168626 Or you can download old Haste from Haste's project page. (But Haste's web site and svn repository is lost. So this is not latest one.) http://sourceforge.net/projects/haste-ide/ |
From: Tim D. <tw...@do...> - 2006-12-28 07:40:34
|
Solved my own problem... I'd installed the wxbase2.6 deb, without the corresponding wxgtk2.6 Sorry for the noise. Tim > I used to be able to build, but can't any longer since upgrading to > gcc-6.6, wx-2.6 etc. > > Any tips or suggestions before I start trying to debug the build system? > > Tim > > > ------------------ snip ---------------------------------------- > > > tim@home:~/src$ cd /tmp > tim@home:/tmp$ darcs get http://darcs.haskell.org/wxhaskell > Official darcs repository for wxHaskell. > ********************** > Copying patch 322 of 322... done! > Applying patch 322 of 322... done. > Finished getting. > tim@home:/tmp$ cd wxhaskell/ > tim@home:/tmp/wxhaskell$ wx-config --list > > Default config is base-unicode-release-2.6 > > Default config will be used for output > > Alternate matches: > base-unicode-debug-2.6 > > Legacy configs available in /usr: > wxgtk-2.4 > wxbase-2.4 > > tim@home:/tmp/wxhaskell$ chmod +x ./configure > tim@home:/tmp/wxhaskell$ ./configure > checking system: > wx-config found > ghc found > ghc-pkg found > haddock found > install program found > > creating configuration files: > config > config/config.mk > config/wxcore.pkg > config/wx.pkg > config/wxhaskell-register.bat > config/wxhaskell-unregister.bat > config/setcd > config/macosx-install.info > config/macosx-postinstall > config/macosx-app > config/wxhaskell.spec > config/prologue.txt > config/cache.txt > > configuration: > library: wxhaskell-0.10.1 (release 0) > compiler: ghc-6.6 > wxwidgets: -i/usr/lib/wx/include/base-unicode-release-2.6 > -i/usr/include/wx-2.6 -dwxuse_gui=0 -d_file_offset_bits=64 -d_large_files > -d_largefile_source=1 -dno_gcc_pragma -2.6.3 > with openGL: no > library dir: /usr/lib > > done: > type 'make' to build wxhaskell. > type 'make install' to install wxhaskell. > type 'make help' to receive help on all other make targets > > tim@home:/tmp/wxhaskell$ make > makefile:723: warning: overriding commands for target > `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' > makefile:718: warning: ignoring old commands for target > `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' > makefile:723: warning: overriding commands for target > `-i/usr/include/wx-2' > makefile:718: warning: ignoring old commands for target > `-i/usr/include/wx-2' > makefile:723: warning: overriding commands for target `-dwxuse_gui=0' > makefile:718: warning: ignoring old commands for target `-dwxuse_gui=0' > makefile:723: warning: overriding commands for target > `-d_file_offset_bits=64' > makefile:718: warning: ignoring old commands for target > `-d_file_offset_bits=64' > makefile:723: warning: overriding commands for target `-d_large_files' > makefile:718: warning: ignoring old commands for target `-d_large_files' > makefile:723: warning: overriding commands for target > `-d_largefile_source=1' > makefile:718: warning: ignoring old commands for target > `-d_largefile_source=1' > makefile:723: warning: overriding commands for target `-dno_gcc_pragma' > makefile:718: warning: ignoring old commands for target `-dno_gcc_pragma' > makefile:727: warning: overriding commands for target > `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' > makefile:723: warning: ignoring old commands for target > `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' > makefile:727: warning: overriding commands for target > `-i/usr/include/wx-2' > makefile:723: warning: ignoring old commands for target > `-i/usr/include/wx-2' > makefile:727: warning: overriding commands for target `-dwxuse_gui=0' > makefile:723: warning: ignoring old commands for target `-dwxuse_gui=0' > makefile:727: warning: overriding commands for target > `-d_file_offset_bits=64' > makefile:723: warning: ignoring old commands for target > `-d_file_offset_bits=64' > makefile:727: warning: overriding commands for target `-d_large_files' > makefile:723: warning: ignoring old commands for target `-d_large_files' > makefile:727: warning: overriding commands for target > `-d_largefile_source=1' > makefile:723: warning: ignoring old commands for target > `-d_largefile_source=1' > makefile:727: warning: overriding commands for target `-dno_gcc_pragma' > makefile:723: warning: ignoring old commands for target `-dno_gcc_pragma' > make: *** No rule to make target > `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2.6', needed by > `wxc'. Stop. > tim@home:/tmp/wxhaskell$ > > > > ------------------------------------------------------------------------- > 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 > _______________________________________________ > wxhaskell-users mailing list > wxh...@li... > https://lists.sourceforge.net/lists/listinfo/wxhaskell-users > > |
From: Tim D. <tw...@do...> - 2006-12-28 05:46:42
|
I used to be able to build, but can't any longer since upgrading to gcc-6.6, wx-2.6 etc. Any tips or suggestions before I start trying to debug the build system? Tim ------------------ snip ---------------------------------------- tim@home:~/src$ cd /tmp tim@home:/tmp$ darcs get http://darcs.haskell.org/wxhaskell Official darcs repository for wxHaskell. ********************** Copying patch 322 of 322... done! Applying patch 322 of 322... done. Finished getting. tim@home:/tmp$ cd wxhaskell/ tim@home:/tmp/wxhaskell$ wx-config --list Default config is base-unicode-release-2.6 Default config will be used for output Alternate matches: base-unicode-debug-2.6 Legacy configs available in /usr: wxgtk-2.4 wxbase-2.4 tim@home:/tmp/wxhaskell$ chmod +x ./configure tim@home:/tmp/wxhaskell$ ./configure checking system: wx-config found ghc found ghc-pkg found haddock found install program found creating configuration files: config config/config.mk config/wxcore.pkg config/wx.pkg config/wxhaskell-register.bat config/wxhaskell-unregister.bat config/setcd config/macosx-install.info config/macosx-postinstall config/macosx-app config/wxhaskell.spec config/prologue.txt config/cache.txt configuration: library: wxhaskell-0.10.1 (release 0) compiler: ghc-6.6 wxwidgets: -i/usr/lib/wx/include/base-unicode-release-2.6 -i/usr/include/wx-2.6 -dwxuse_gui=0 -d_file_offset_bits=64 -d_large_files -d_largefile_source=1 -dno_gcc_pragma -2.6.3 with openGL: no library dir: /usr/lib done: type 'make' to build wxhaskell. type 'make install' to install wxhaskell. type 'make help' to receive help on all other make targets tim@home:/tmp/wxhaskell$ make makefile:723: warning: overriding commands for target `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' makefile:718: warning: ignoring old commands for target `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' makefile:723: warning: overriding commands for target `-i/usr/include/wx-2' makefile:718: warning: ignoring old commands for target `-i/usr/include/wx-2' makefile:723: warning: overriding commands for target `-dwxuse_gui=0' makefile:718: warning: ignoring old commands for target `-dwxuse_gui=0' makefile:723: warning: overriding commands for target `-d_file_offset_bits=64' makefile:718: warning: ignoring old commands for target `-d_file_offset_bits=64' makefile:723: warning: overriding commands for target `-d_large_files' makefile:718: warning: ignoring old commands for target `-d_large_files' makefile:723: warning: overriding commands for target `-d_largefile_source=1' makefile:718: warning: ignoring old commands for target `-d_largefile_source=1' makefile:723: warning: overriding commands for target `-dno_gcc_pragma' makefile:718: warning: ignoring old commands for target `-dno_gcc_pragma' makefile:727: warning: overriding commands for target `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' makefile:723: warning: ignoring old commands for target `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2' makefile:727: warning: overriding commands for target `-i/usr/include/wx-2' makefile:723: warning: ignoring old commands for target `-i/usr/include/wx-2' makefile:727: warning: overriding commands for target `-dwxuse_gui=0' makefile:723: warning: ignoring old commands for target `-dwxuse_gui=0' makefile:727: warning: overriding commands for target `-d_file_offset_bits=64' makefile:723: warning: ignoring old commands for target `-d_file_offset_bits=64' makefile:727: warning: overriding commands for target `-d_large_files' makefile:723: warning: ignoring old commands for target `-d_large_files' makefile:727: warning: overriding commands for target `-d_largefile_source=1' makefile:723: warning: ignoring old commands for target `-d_largefile_source=1' makefile:727: warning: overriding commands for target `-dno_gcc_pragma' makefile:723: warning: ignoring old commands for target `-dno_gcc_pragma' make: *** No rule to make target `out/wxc/libwxc--i/usr/lib/wx/include/base-unicode-release-2.6', needed by `wxc'. Stop. tim@home:/tmp/wxhaskell$ |