|
From: Matthew B. <mat...@gm...> - 2008-01-22 20:27:48
|
On Tue, 2008-01-22 at 12:06 -0800, ope...@li... wrote: > On a side note, can anyone help me debug this error: "ImportError: No > module named opensync" > > It seems like a simple fix I'm just not sure where it looks for the > module _OR_ why it may not have been built. I grabbed the 0.35 source > and built these plugins with no issues: > > file/ kdepim/ moto/ python/ vformat/ > > And build msynctool/ opensync/ from 0.35 as well with no issues (that > I could tell anyway). > > Any help is greatly appreciated :) > > -- > Lonny I had this error just yesterday, and for me it was because I was building on a 64-bit system. All your cmake calls need a "-DLIB_SUFFIX=64" flag tacked on, i.e. cmake -DLIB_SUFFIX=64 -DCMAKE_INSTALL_PREFIX=$OPENSYNC_BUILD ../ I edited the wiki page to reflect this: http://www.opensync.org/wiki/devel-branch-0.30 You should probably also do "export LIBSUFFIX=lib64". If you're not on 64-bit, well then I dunno what the problem is. =) Good luck, mb |