Dave!
...should be at the same level as my last releases (might have screwed up the readme slightly). The XQS files are just built from the map files using a script Rich wrote some years back, the problem was in package-manifest.in, which lists what gets packaged.
I'm curious about something. This release had all the other DLLs iincluded. I had assumed this was the case since they were built using the same AMD family optimizations.
OK, so since I did not want to leave all these DLLs in the Firefox program directory I moved them out to \usr\local\lib. For FF purposes that was OK (\usr\local\lib is the 1st directory in my LIBPATH), however, things like ANPM fail, specifically that one complains of being unable to load the NSS library:
Executing: @python G:\UTIL\ANPM\scripts\yum_populate.py
error: Failed to initialize NSS library
Traceback (most recent call last):
File "G:\UTIL\ANPM\scripts\yum_populate.py", line 6, in <module>
import yum
File "/@unixroot/usr/lib/python2.7/site-packages/yum/__init__.py", line 23, in <module>
import rpm
File "/@unixroot/usr/lib/python2.7/site-packages/rpm/__init__.py", line 39, in <module>
from rpm.transaction import *
File "/@unixroot/usr/lib/python2.7/site-packages/rpm/transaction.py", line 5, in <module>
from rpm._rpm import ts as TransactionSetCore
ImportError: cannot import name ts
Return code: 0
Therefore, I moved the DLLs back into FF directory to avoid impacting the remainder of the system. This works so far, but begs the question of: do I not run into DLL conflicts now?
So FF will use it's own DLLs, but when things like ANPM run they will load them from the \usr\lib path, which is where they should be.
Now, maybe all this is a bit of a moot point, and maybe you built stuff like NSS from the latest releases which are currently showing up in netlabs-exp repo, and which i have not installed here?
What do you recommend as the preferred install?
FYI: I did try running just the core FF binaries with the current netlabs-rel DLLs, however that did cause some one-off crashes which i could not explain. So I am making the assumption the stuff in your FF release package must all go together and be used together.