Warning example
*** WARNING: ./usr/src/debug/kamailio-5.3.0-dev1.0.fc30.x86_64/src/modules/app_python3/apy_kemi.c is executable but has empty or no shebang, removing executable bit
*** WARNING: ./usr/src/debug/kamailio-5.3.0-dev1.0.fc30.x86_64/src/modules/ims_auth/pvt_message.c is executable but has empty or no shebang, removing executable bit
*** WARNING: ./usr/src/debug/kamailio-5.3.0-dev1.0.fc30.x86_64/src/modules/auth/api.c is executable but has empty or no shebang, removing executable bit
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1957
-- Commit Summary --
* Fixed compile warnings on Fedora 30
-- File Changes --
M src/modules/app_python3/apy_kemi.c (0)
M src/modules/auth/api.c (0)
M src/modules/ims_auth/pvt_message.c (0)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1957.patchhttps://github.com/kamailio/kamailio/pull/1957.diff
--
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/pull/1957
Hello everyone,
I install and setup an IMS Network by kamailio-5.2.2 . I have p-cscf, i-cscf and s-cscf in three different systems . my Hss is Fokus. Registration and call between subscribers of network works successfully . now I want to define IP Trunk in my network which can pass transfer and external subscribers calls through my IMS network. I don't know how to define IP Trunk
--
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/1960
### Description
I tried package app_python3 and found this error on all dist where python3 is exist
```
[ 419s] CC (gcc) [M app_python.so] python_support.o
[ 419s] python_support.c:22:20: fatal error: Python.h: No such file or directory
[ 419s] #include <Python.h>
[ 419s] ^
[ 419s] compilation terminated.
[ 419s] make[2]: *** [python_support.o] Error 1
[ 419s] make[1]: *** [modules] Error 1
[ 419s] make[1]: Leaving directory `/home/abuild/rpmbuild/BUILD/kamailio-5.3.0-dev5/src'
[ 419s] make: *** [every-module] Error 2
```
But `Python.h` is present in system.
Include dir and libsdir you can get using command `python3-config`. Like
```
# python3-config --includes
-I/usr/include/python3.7m -I/usr/include/python3.7m
# python3-config --libs
-lpython3.7m -lpthread -ldl -lutil -lm
```
### Possible Solutions
Update make files to use `python3-config`.
--
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/1959