Re: [sr-dev] [kamailio/kamailio] auth_ephemeral.so: undefined symbol: EVP_sha512 (#1473)

2018-03-10 Thread marcinkowalczyk
Hi,

If there is an conflict between tls and emperal than there no point to build 
auth_empheral as deb. 

Regards

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1473#issuecomment-372029232___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:96a1367e: app_python3: renamed main files to match module name

2018-03-10 Thread Daniel-Constantin Mierla
Module: kamailio
Branch: master
Commit: 96a1367ef9c0977c4b7ae378ad76ec22d393e990
URL: 
https://github.com/kamailio/kamailio/commit/96a1367ef9c0977c4b7ae378ad76ec22d393e990

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2018-03-10T12:18:28+01:00

app_python3: renamed main files to match module name

---

Added: src/modules/app_python3/app_python3_mod.c
Added: src/modules/app_python3/app_python3_mod.h
Modified: src/modules/app_python3/mod_Core.c
Modified: src/modules/app_python3/mod_Logger.c
Modified: src/modules/app_python3/mod_Ranks.c
Modified: src/modules/app_python3/mod_Router.c
Modified: src/modules/app_python3/python_exec.c
Modified: src/modules/app_python3/python_support.c
Removed: src/modules/app_python3/app_python_mod.c
Removed: src/modules/app_python3/app_python_mod.h

---

Diff:  
https://github.com/kamailio/kamailio/commit/96a1367ef9c0977c4b7ae378ad76ec22d393e990.diff
Patch: 
https://github.com/kamailio/kamailio/commit/96a1367ef9c0977c4b7ae378ad76ec22d393e990.patch

---

diff --git a/src/modules/app_python3/app_python_mod.c 
b/src/modules/app_python3/app_python3_mod.c
similarity index 99%
rename from src/modules/app_python3/app_python_mod.c
rename to src/modules/app_python3/app_python3_mod.c
index 180bb74230..5d45f3f355 100644
--- a/src/modules/app_python3/app_python_mod.c
+++ b/src/modules/app_python3/app_python3_mod.c
@@ -31,7 +31,7 @@
 #include "python_iface.h"
 #include "python_msgobj.h"
 #include "python_support.h"
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 
 #include "mod_Router.h"
 #include "mod_Core.h"
diff --git a/src/modules/app_python3/app_python_mod.h 
b/src/modules/app_python3/app_python3_mod.h
similarity index 94%
rename from src/modules/app_python3/app_python_mod.h
rename to src/modules/app_python3/app_python3_mod.h
index 0c108e2d3f..b011036172 100644
--- a/src/modules/app_python3/app_python_mod.h
+++ b/src/modules/app_python3/app_python3_mod.h
@@ -19,8 +19,8 @@
  *
 */
 
-#ifndef _PYTHON_MOD_H
-#define  _PYTHON_MOD_H
+#ifndef _APP_PYTHON3_MOD_H
+#define  _APP_PYTHON3_MOD_H
 
 #include 
 
diff --git a/src/modules/app_python3/mod_Core.c 
b/src/modules/app_python3/mod_Core.c
index 4572a1bb80..c8963b6011 100644
--- a/src/modules/app_python3/mod_Core.c
+++ b/src/modules/app_python3/mod_Core.c
@@ -33,7 +33,7 @@
 
 // local includes
 #include "python_exec.h"
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 #include "python_iface.h"
 #include "python_msgobj.h"
 #include "python_support.h"
diff --git a/src/modules/app_python3/mod_Logger.c 
b/src/modules/app_python3/mod_Logger.c
index b723269bb8..424ed31bc9 100644
--- a/src/modules/app_python3/mod_Logger.c
+++ b/src/modules/app_python3/mod_Logger.c
@@ -33,7 +33,7 @@
 
 // local includes
 #include "python_exec.h"
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 #include "python_iface.h"
 #include "python_msgobj.h"
 #include "python_support.h"
diff --git a/src/modules/app_python3/mod_Ranks.c 
b/src/modules/app_python3/mod_Ranks.c
index 80860284bd..118c2ca4f3 100644
--- a/src/modules/app_python3/mod_Ranks.c
+++ b/src/modules/app_python3/mod_Ranks.c
@@ -33,7 +33,7 @@
 
 // local includes
 #include "python_exec.h"
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 #include "python_iface.h"
 #include "python_msgobj.h"
 #include "python_support.h"
diff --git a/src/modules/app_python3/mod_Router.c 
b/src/modules/app_python3/mod_Router.c
index 3fe96f08f1..04183ba47d 100644
--- a/src/modules/app_python3/mod_Router.c
+++ b/src/modules/app_python3/mod_Router.c
@@ -32,7 +32,7 @@
 
 // local includes
 #include "python_exec.h"
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 #include "python_iface.h"
 #include "python_msgobj.h"
 #include "python_support.h"
diff --git a/src/modules/app_python3/python_exec.c 
b/src/modules/app_python3/python_exec.c
index 55f40c1e47..b402a2b9d6 100644
--- a/src/modules/app_python3/python_exec.c
+++ b/src/modules/app_python3/python_exec.c
@@ -33,7 +33,7 @@
 #include "../../core/locking.h"
 
 #include "python_exec.h"
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 #include "python_msgobj.h"
 #include "python_support.h"
 
diff --git a/src/modules/app_python3/python_support.c 
b/src/modules/app_python3/python_support.c
index 2ad522901a..e7dc47d526 100644
--- a/src/modules/app_python3/python_support.c
+++ b/src/modules/app_python3/python_support.c
@@ -26,7 +26,7 @@
 #include "../../core/dprint.h"
 #include "../../core/mem/mem.h"
 
-#include "app_python_mod.h"
+#include "app_python3_mod.h"
 #include "python_support.h"
 
 static char *make_message(const char *fmt, va_list args);


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] auth_ephemeral.so: undefined symbol: EVP_sha512 (#1473)

2018-03-10 Thread henningw
Good that its works now - I suspected something like this (comment in the 
Makefile: Static linking, if you'd like to use TLS and AUTH_EPHEMERAL at the 
same time)
Maybe @ngvoice can comment on this issue, if there are some plans to remove 
this limitation. Otherwise this should be noted in the module README.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1473#issuecomment-372026258___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev