<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, …
[View More]tls)
- code is contributed GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [ ] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [x] PR should be backported to stable branches
- [ ] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
Add support for LoongArch.The LoongArch architecture (LoongArch) is an Instruction Set Architecture (ISA) that has a RISC style.
Documentations:
ISA:
https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html
ABI:
https://loongson.github.io/LoongArch-Documentation/LoongArch-ELF-ABI-EN.html
More docs can be found at:
https://loongson.github.io/LoongArch-Documentation/README-EN.html
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3715
-- Commit Summary --
* Add support for LoongArch.
-- File Changes --
M src/modules/app_jsdt/duk_config.h (11)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3715.patchhttps://github.com/kamailio/kamailio/pull/3715.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3715
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3715(a)github.com>
[View Less]
Hello,
Kamailio SIP Server v5.7.4 stable release is out.
This is a maintenance release of the latest stable branch, 5.7, that
includes fixes since the release of v5.7.3. There is no change to
database schema or configuration language structure that you have to do
on previous installations of v5.7.x. Deployments running previous v5.7.x
versions are strongly recommended to be upgraded to v5.7.4.
For more details about version 5.7.4 (including links and guidelines to
download the tarball or …
[View More]from GIT repository), visit:
* https://www.kamailio.org/w/2024/01/kamailio-v5-7-4-released/
RPM, Debian/Ubuntu packages will be available soon as well.
Many thanks to all contributing and using Kamailio!
Cheers,
Daniel
--
Daniel-Constantin Mierla (@ asipto.com)
twitter.com/miconda -- linkedin.com/in/miconda
Kamailio Consultancy, Training and Development Services -- asipto.com
Kamailio Advanced Training, February 20-22, 2024 -- asipto.com
Kamailio World Conference, April 18-19, 2024, Berlin -- kamailioworld.com
[View Less]
Hi devs,
The CI/CD seems to be broken after I pushed a few commits to master.
There seem to be docker pull errors.
Appreciate if someone could take a look.
Regards
Shih-Ping
Hello,
I am considering to release Kamailio v5.7.4 (out of branch 5.7) on
Thursday, Jan 18, 2024. If anyone is aware of issues not yet on the bug
tracker, report them there asap in order to have a better chance to be
fixed.
Cheers,
Daniel
--
Daniel-Constantin Mierla (@ asipto.com)
twitter.com/miconda -- linkedin.com/in/miconda
Kamailio Consultancy, Training and Development Services -- asipto.com
Kamailio Advanced Training, February 20-22, 2024 -- asipto.com
Kamailio World Conference, …
[View More]April 18-19, 2024, Berlin -- kamailioworld.com
[View Less]
Module: kamailio
Branch: master
Commit: d0e7aa5405a293401ad19347cc062d1585d06956
URL: https://github.com/kamailio/kamailio/commit/d0e7aa5405a293401ad19347cc062d1…
Author: S-P Chan <shihping.chan(a)gmail.com>
Committer: S-P Chan <shihping.chan(a)gmail.com>
Date: 2024-01-18T06:42:28+08:00
pkg: RPM spec use automatic dependency for wolfssl
- wolfssl doesn't follow semantic versioning
- let RPM figure out the correct runtime library name
depending on the -devel package used for …
[View More]building
i.e. based on the package used for pkgconfig(wolfssl)
e.g. if wolfssl35-devel - then libwolfssl.so.35
if wolfssl42-devel - then libwolfssl.so.42
---
Modified: pkg/kamailio/obs/kamailio.spec
---
Diff: https://github.com/kamailio/kamailio/commit/d0e7aa5405a293401ad19347cc062d1…
Patch: https://github.com/kamailio/kamailio/commit/d0e7aa5405a293401ad19347cc062d1…
---
diff --git a/pkg/kamailio/obs/kamailio.spec b/pkg/kamailio/obs/kamailio.spec
index ab556f5cd59..48c78435028 100644
--- a/pkg/kamailio/obs/kamailio.spec
+++ b/pkg/kamailio/obs/kamailio.spec
@@ -1037,7 +1037,6 @@ TLS transport for Kamailio.
%package tls_wolfssl
Summary: TLS transport for Kamailio based on wolfSSL
Group: %{PKGGROUP}
-Requires: wolfssl>=5.6.4
BuildRequires: pkgconfig(wolfssl)
%description tls_wolfssl
[View Less]