Philippe M. Chiasson wrote:


Pratik wrote:

Sorry for breaking the thread twice. It had really slipped out of my
mind that I was also subscribed to dev list and I accidently posted 2
messages to mp's user list.

No worries :)

3. When we say static mp2, I belive that all the libraries will be
statically linked to the resulting binary. So, the final binary
shouldn't be dependant on any library. Therefore, it shouldn't matter
if I delete libapr-0.a from /usr/local/lib.


No, when we say static mp2, we mean statically linked mod_perl module to
httpd. The rest of the libraries, like libapr libapr-util, etc are still
dynamically loaded.

Just to add, that static mp1 is exactly the same. It's .pm|.so modules aren't linked in. And linking all 42 mp2 .so objects [1] will be a huge bloat [2] if you are going to use only a handfull of them.


[1] % find WrapXS | grep '\.o' | wc -l
42

[2] % du -c `find WrapXS | grep '\.o'` | grep total
2336    total

--
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to