Reputation: 3590
I got the binaries from the xerces apache site but they only have dynamic lib.
I am wondering why they do not include static version of the lib? And is there a place to get static Xerces 3.0.0 for AIX.
And its C version of it
Thanks for any input
P.S. Other then building it myself I am aware of this option but I want something that is more standardized. Meaning using their generic build flags that they used to build dynamic version of the lib
Upvotes: 0
Views: 437
Reputation: 37930
Just as you mention in your postscript, download from Apache's site and then run the configure script:
./configure --enable-static
Upvotes: 1