From: Pete S. <pst...@gm...> - 2008-11-27 19:04:05
|
DM> Hmm...when I checked the tex2rtf linkmap here, I discovered this ; DM> DM> ldd /usr/local/bin/tex2rtf DM> linux-gate.so.1 => (0xffffe000) DM> libwx_gtk2_richtext-2.8.so.0 => /usr/lib/libwx_gtk2_richtext-2.8.so.0 DM> (0xf7e80000) DM> DM> ...blabla.....and, despite the fact that I didn't see the error you DM> encountered, this is actually wrong -- we *should* be linking DM> against the custom wx libs installed in /usr/local/wx289/.....yes?? Correct. DM> Ergo, this is probably because in the tex2rtf build instructions, we don't DM> actually specify --with-wx-prefix=PREFIX at configure time, and the DM> result is the tex2rtf build ends up using system installed wx libs instead. If you PATH and LD_LIBRARY_PATH are set correctly, you should need to use --with-wx-prefix. DM> As it turns out, my system-wide wx installation is indeed a debug DM> version build, This is not typical. DM> and this would explain why I didn't encounter this same error DM> building jazz itself. That's not my current guess. I believe Kevin's error was due to not finding release versions of the wxWidgets library. DM> Kevin, my suggestion is to rebuild/reinstall tex2rtf, but at configure time DM> doing ; DM> DM> ../tex2rtf/configure --with-wx-prefix=/usr/local/wx289 DM> DM> This should result in tex2rtf being linked against our custom wx libs, and DM> the problem you found should go away..... I don't think this will work. I think you need to install the release version of wxWidgets. Don, what was your PATH when you built tex2rtf? If our version of wx (/usr/local/wx289/bin) is first in your path, you will use the proper version of wx-config. Your ldd test seems to indicate this was not the case. Pete |