<p>Indeed. with those two It compiles</p>

<pre><code>make  every-module group_include=ktls
make[1]: 'auth_identity.so' is up to date.
make[1]: 'crypto.so' is up to date.
CC (gcc) [M tls.so]     tls_domain.o
CC (gcc) [M tls.so]     tls_server.o
CC (gcc) [M tls.so]     tls_cfg.o
CC (gcc) [M tls.so]     tls_util.o
CC (gcc) [M tls.so]     tls_config.o
CC (gcc) [M tls.so]     tls_select.o
CC (gcc) [M tls.so]     tls_dump_vf.o
CC (gcc) [M tls.so]     tls_init.o
tls_init.c: In function 'init_ssl_methods':
tls_init.c:377:2: warning: 'TLSv1_client_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_cli - 1] = TLSv1_client_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1598:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_client_method(void)) /* TLSv1.0 */
 ^
tls_init.c:378:2: warning: 'TLSv1_server_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_srv - 1] = TLSv1_server_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1597:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_server_method(void)) /* TLSv1.0 */
 ^
tls_init.c:379:2: warning: 'TLSv1_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1 - 1] = TLSv1_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1596:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_method(void)) /* TLSv1.0 */
 ^
tls_init.c:382:2: warning: 'TLSv1_1_client_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_1_cli - 1] = TLSv1_1_client_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1604:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_client_method(void)) /* TLSv1.1 */
 ^
tls_init.c:383:2: warning: 'TLSv1_1_server_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_1_srv - 1] = TLSv1_1_server_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1603:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_server_method(void)) /* TLSv1.1 */
 ^
tls_init.c:384:2: warning: 'TLSv1_1_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_1 - 1] = TLSv1_1_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1602:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_method(void)) /* TLSv1.1 */
 ^
tls_init.c:388:2: warning: 'TLSv1_2_client_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_2_cli - 1] = TLSv1_2_client_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1610:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_client_method(void)) /* TLSv1.2 */
 ^
tls_init.c:389:2: warning: 'TLSv1_2_server_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_2_srv - 1] = TLSv1_2_server_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1609:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_server_method(void)) /* TLSv1.2 */
 ^
tls_init.c:390:2: warning: 'TLSv1_2_method' is deprecated [-Wdeprecated-declarations]
  ssl_methods[TLS_USE_TLSv1_2 - 1] = TLSv1_2_method();
  ^~~~~~~~~~~
In file included from /usr/include/openssl/ct.h:13:0,
                 from /usr/include/openssl/ssl.h:61,
                 from tls_init.c:45:
/usr/include/openssl/ssl.h:1608:1: note: declared here
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_method(void)) /* TLSv1.2 */
 ^
CC (gcc) [M tls.so]     tls_locking.o
tls_locking.c:98:13: warning: 'locking_f' defined but not used [-Wunused-function]
 static void locking_f(int mode, int n, const char* file, int line)
             ^~~~~~~~~
tls_locking.c:83:13: warning: 'dyn_destroy_f' defined but not used [-Wunused-function]
 static void dyn_destroy_f(struct CRYPTO_dynlock_value *l,
             ^~~~~~~~~~~~~
tls_locking.c:65:13: warning: 'dyn_lock_f' defined but not used [-Wunused-function]
 static void dyn_lock_f(int mode, struct CRYPTO_dynlock_value* l,
             ^~~~~~~~~~
tls_locking.c:42:37: warning: 'dyn_create_f' defined but not used [-Wunused-function]
 static struct CRYPTO_dynlock_value* dyn_create_f(const char* file, int line)
                                     ^~~~~~~~~~~~
CC (gcc) [M tls.so]     tls_mod.o
CC (gcc) [M tls.so]     tls_bio.o
CC (gcc) [M tls.so]     tls_rpc.o
CC (gcc) [M tls.so]     tls_ct_wrq.o
CC (gcc) [M tls.so]     tls_verify.o
LD (gcc) [M tls.so]     tls.so
</code></pre>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/kamailio/kamailio/issues/834#issuecomment-256668226">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AF36ZUnT58N2dRIeAcdpF9DIU_VOsiHkks5q4L2mgaJpZM4KiczS">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AF36ZduiUA5Pi99qiuAYNhfpun8rqUanks5q4L2mgaJpZM4KiczS.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/kamailio/kamailio/issues/834#issuecomment-256668226"></link>
  <meta itemprop="name" content="View Issue"></meta>
</div>
<meta itemprop="description" content="View this Issue on GitHub"></meta>
</div>

<script type="application/json" data-scope="inboxmarkup">{"api_version":"1.0","publisher":{"api_key":"05dde50f1d1a384dd78767c55493e4bb","name":"GitHub"},"entity":{"external_key":"github/kamailio/kamailio","title":"kamailio/kamailio","subtitle":"GitHub repository","main_image_url":"https://cloud.githubusercontent.com/assets/143418/17495839/a5054eac-5d88-11e6-95fc-7290892c7bb5.png","avatar_image_url":"https://cloud.githubusercontent.com/assets/143418/15842166/7c72db34-2c0b-11e6-9aed-b52498112777.png","action":{"name":"Open in GitHub","url":"https://github.com/kamailio/kamailio"}},"updates":{"snippets":[{"icon":"PERSON","message":"@linuxmaniac in #834: Indeed. with those two It compiles\r\n```\r\nmake  every-module group_include=ktls\r\nmake[1]: 'auth_identity.so' is up to date.\r\nmake[1]: 'crypto.so' is up to date.\r\nCC (gcc) [M tls.so]\t\ttls_domain.o\r\nCC (gcc) [M tls.so]\t\ttls_server.o\r\nCC (gcc) [M tls.so]\t\ttls_cfg.o\r\nCC (gcc) [M tls.so]\t\ttls_util.o\r\nCC (gcc) [M tls.so]\t\ttls_config.o\r\nCC (gcc) [M tls.so]\t\ttls_select.o\r\nCC (gcc) [M tls.so]\t\ttls_dump_vf.o\r\nCC (gcc) [M tls.so]\t\ttls_init.o\r\ntls_init.c: In function 'init_ssl_methods':\r\ntls_init.c:377:2: warning: 'TLSv1_client_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_cli - 1] = TLSv1_client_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1598:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_client_method(void)) /* TLSv1.0 */\r\n ^\r\ntls_init.c:378:2: warning: 'TLSv1_server_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_srv - 1] = TLSv1_server_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1597:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_server_method(void)) /* TLSv1.0 */\r\n ^\r\ntls_init.c:379:2: warning: 'TLSv1_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1 - 1] = TLSv1_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1596:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_method(void)) /* TLSv1.0 */\r\n ^\r\ntls_init.c:382:2: warning: 'TLSv1_1_client_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_1_cli - 1] = TLSv1_1_client_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1604:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_client_method(void)) /* TLSv1.1 */\r\n ^\r\ntls_init.c:383:2: warning: 'TLSv1_1_server_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_1_srv - 1] = TLSv1_1_server_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1603:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_server_method(void)) /* TLSv1.1 */\r\n ^\r\ntls_init.c:384:2: warning: 'TLSv1_1_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_1 - 1] = TLSv1_1_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1602:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_method(void)) /* TLSv1.1 */\r\n ^\r\ntls_init.c:388:2: warning: 'TLSv1_2_client_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_2_cli - 1] = TLSv1_2_client_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1610:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_client_method(void)) /* TLSv1.2 */\r\n ^\r\ntls_init.c:389:2: warning: 'TLSv1_2_server_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_2_srv - 1] = TLSv1_2_server_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1609:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_server_method(void)) /* TLSv1.2 */\r\n ^\r\ntls_init.c:390:2: warning: 'TLSv1_2_method' is deprecated [-Wdeprecated-declarations]\r\n  ssl_methods[TLS_USE_TLSv1_2 - 1] = TLSv1_2_method();\r\n  ^~~~~~~~~~~\r\nIn file included from /usr/include/openssl/ct.h:13:0,\r\n                 from /usr/include/openssl/ssl.h:61,\r\n                 from tls_init.c:45:\r\n/usr/include/openssl/ssl.h:1608:1: note: declared here\r\n DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_method(void)) /* TLSv1.2 */\r\n ^\r\nCC (gcc) [M tls.so]\t\ttls_locking.o\r\ntls_locking.c:98:13: warning: 'locking_f' defined but not used [-Wunused-function]\r\n static void locking_f(int mode, int n, const char* file, int line)\r\n             ^~~~~~~~~\r\ntls_locking.c:83:13: warning: 'dyn_destroy_f' defined but not used [-Wunused-function]\r\n static void dyn_destroy_f(struct CRYPTO_dynlock_value *l,\r\n             ^~~~~~~~~~~~~\r\ntls_locking.c:65:13: warning: 'dyn_lock_f' defined but not used [-Wunused-function]\r\n static void dyn_lock_f(int mode, struct CRYPTO_dynlock_value* l,\r\n             ^~~~~~~~~~\r\ntls_locking.c:42:37: warning: 'dyn_create_f' defined but not used [-Wunused-function]\r\n static struct CRYPTO_dynlock_value* dyn_create_f(const char* file, int line)\r\n                                     ^~~~~~~~~~~~\r\nCC (gcc) [M tls.so]\t\ttls_mod.o\r\nCC (gcc) [M tls.so]\t\ttls_bio.o\r\nCC (gcc) [M tls.so]\t\ttls_rpc.o\r\nCC (gcc) [M tls.so]\t\ttls_ct_wrq.o\r\nCC (gcc) [M tls.so]\t\ttls_verify.o\r\nLD (gcc) [M tls.so]\t\ttls.so\r\n```"}],"action":{"name":"View Issue","url":"https://github.com/kamailio/kamailio/issues/834#issuecomment-256668226"}}}</script>