Hi!
From Makefile:
#excluded because they depend on external *.h files exclude_modules+= h350
Why is h350 handled different than the other modules with external dependencies? IMO it just should be added to "exclude_modules?="
# excluded because they do not compile (remove them only # after they are fixed) -- andrei exclude_modules+= avpops bdb dbtext iptrtpproxy pa rls
This of course prevents also building of Kamailio's avpops and rls module. How can we distinguish between ser's rls module and K's rls module?
thanks Klaus
On Jul 03, 2009 at 10:09, Klaus Darilion klaus.mailinglists@pernau.at wrote:
Hi!
From Makefile:
#excluded because they depend on external *.h files exclude_modules+= h350
Why is h350 handled different than the other modules with external dependencies? IMO it just should be added to "exclude_modules?="
I've just tried to break them into "groups" so that the reason for excluding them can be documented in a comment. This would make a difference only if somebody uses something like: export exclude_modules="foo bar" ; make all .
# excluded because they do not compile (remove them only # after they are fixed) -- andrei exclude_modules+= avpops bdb dbtext iptrtpproxy pa rls
This of course prevents also building of Kamailio's avpops and rls module. How can we distinguish between ser's rls module and K's rls module?
rls should be excluded by default because it depends on libxml2 anyway.
Andrei
Andrei Pelinescu-Onciul schrieb:
On Jul 03, 2009 at 10:09, Klaus Darilion klaus.mailinglists@pernau.at wrote:
Hi!
From Makefile:
#excluded because they depend on external *.h files exclude_modules+= h350
Why is h350 handled different than the other modules with external dependencies? IMO it just should be added to "exclude_modules?="
I've just tried to break them into "groups" so that the reason for excluding them can be documented in a comment. This would make a difference only if somebody uses something like: export exclude_modules="foo bar" ; make all .
# excluded because they do not compile (remove them only # after they are fixed) -- andrei exclude_modules+= avpops bdb dbtext iptrtpproxy pa rls
This of course prevents also building of Kamailio's avpops and rls module. How can we distinguish between ser's rls module and K's rls module?
rls should be excluded by default because it depends on libxml2 anyway.
But that does not solve the problem that it either includes or excludes both - ser's and K's - implementations.
regards klaus