Development branch for wxHaskell — http://haskell.org/haskellwiki/WxHaskell
Make wxcore link with an rpath to wxc
This fixes the problem I described here: http://comments.gmane.org/gmane.comp.lang.haskell.libraries/16807 and listed as "The only major problem remaining" here: http://www.mail-archive.com/wxhaskell-devel@lists.sourceforge.net/msg00722.html
{ extraLibDirs = extraLibDirs libbi ++ [wxcInstallDir lbi]
, extraLibs = extraLibs libbi ++ ["wxc"] }
{ extraLibDirs = extraLibDirs libbi ++ [wxcDirectory]
, extraLibs = extraLibs libbi ++ ["wxc"]
, ldOptions = ldOptions libbi ++ ["-Wl,-rpath," ++ wxcDirectory] }