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] |