when i build sr, i get these kind of warnings:
Makefile:373: "make TLS option is obsoleted, try TLS_HOOKS or CORE_TLS"
i have not set any TLS option so it appears that the defaults are wrong or obsolete because the warnings are produced.
-- juha
On Oct 10, 2009 at 10:43, Juha Heinanen jh@tutpro.com wrote:
when i build sr, i get these kind of warnings:
Makefile:373: "make TLS option is obsoleted, try TLS_HOOKS or CORE_TLS"
i have not set any TLS option so it appears that the defaults are wrong or obsolete because the warnings are produced.
Maybe you have it set in the environment? (set|grep TLS)
Andrei
On Oct 10, 2009 at 12:42, Juha Heinanen jh@tutpro.com wrote:
Andrei Pelinescu-Onciul writes:
Maybe you have it set in the environment? (set|grep TLS)
andrei,
you were correct, i had them in the environment from k times:
$ set | grep TLS TLS=1 TLS_HOOKS=1
i'll replace them with
CORE_TLS=1
You need TLS_HOOKS, which is 1 by default (so you don't need to set it).
CORE_TLS is needed only if you want to build TLS support in the core (and not as a module) and it does not work without significant changes (you would need to copy the tls code into a tls/ subdir, similar to older kamailio, but it would involve also some editing to remove the module specific part a.s.o). CORE_TLS is not supported, it's only for experimental work.
Andrei