Any luck?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=96951\"][{POST_SNAPBACK}][/a][/div]
Well after sorting out some other issues, I came to a point in the build where some irda related stuff is being built. The compile fails there. I'm going to take another peek at it today.
Update: Gammu (some app that should let you sync with a phone, like gnokii) needs to use linux irda socket stuff (AF_IRDA) obviously that doesn't exist for us on openbsd (or at least if it does then I can't find it). Commenting out the gammu stuff in the top level Makefile seems to be a work around for this... we'll see what happens... it's gone back to building
Update again: Well now I've come across an interesting phenomenon. The build fails telling me
/usr/local/lib/qt3/bin/uic: can't load library 'libXft.so.6.0'
If I run gmake again, it tells me:
/usr/local/lib/qt3/bin/uic: can't load library 'libXi.so.9.0'
If I run it again it tells me:
/usr/local/lib/qt3/bin/uic: can't load library 'libfontconfig.so.2.0'
If I run it yet again it tells me:
/usr/local/lib/qt3/bin/uic: can't load library 'libXcursor.so.3.0'
If I keep running gmake, it basically chooses one of the above libs (which do exist, and are located in /usr/X11R6/lib) and tells me it cant load it.
Running sudo ldconfig /usr/local/lib /usr/X11R6/lib seems to allow the build to continue..... more news later