Bug#1112308: trixie-pu: package kamailio/6.0.1-1+deb13u1
Control: tags -1 - moreinfo
Oh, my fault. Please find the debdiff attached.
diff -Nru kamailio-6.0.1/debian/changelog kamailio-6.0.1/debian/changelog
--- kamailio-6.0.1/debian/changelog 2025-03-11 14:38:30.000000000 +0100
+++ kamailio-6.0.1/debian/changelog 2025-08-28 12:54:46.000000000 +0200
@@ -1,3 +1,10 @@
+kamailio (6.0.1-1+deb13u1) trixie; urgency=medium
+
+ * Team upload
+ * Check only major OpenSSL version (Closes: #1110867)
+
+ -- Bastian Germann <bage@debian.org> Thu, 28 Aug 2025 12:54:46 +0200
+
kamailio (6.0.1-1) unstable; urgency=medium
* debian: add gbp.conf
diff -Nru kamailio-6.0.1/debian/patches/Check-only-major-OpenSSL-version.patch kamailio-6.0.1/debian/patches/Check-only-major-OpenSSL-version.patch
--- kamailio-6.0.1/debian/patches/Check-only-major-OpenSSL-version.patch 1970-01-01 01:00:00.000000000 +0100
+++ kamailio-6.0.1/debian/patches/Check-only-major-OpenSSL-version.patch 2025-08-28 12:54:46.000000000 +0200
@@ -0,0 +1,18 @@
+From: Bastian Germann <bage@debian.org>
+Date: Fri, 22 Aug 2025 13:15:18 +0200
+Subject: Check only major OpenSSL version
+
+The version check was written during OpenSSL 0.9 era.
+It is not needed in Debian and only getting in the way.
+---
+--- a/src/modules/tls/tls_init.c
++++ b/src/modules/tls/tls_init.c
+@@ -866,7 +866,7 @@ int tls_h_mod_init_f(void)
+ * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not)
+ * - values is represented as 0xMMNNFFPPS: major minor fix patch status
+ * 0x00090705f == 0.9.7e release */
+- if((ssl_version >> 12) != (OPENSSL_VERSION_NUMBER >> 12)) {
++ if((ssl_version >> 28) != (OPENSSL_VERSION_NUMBER >> 28)) {
+ LM_CRIT("installed openssl library"
+ " version is too different from the library the " NAME " tls"
+ " module was compiled with: installed \"%s\" (0x%08lx),"
diff -Nru kamailio-6.0.1/debian/patches/series kamailio-6.0.1/debian/patches/series
--- kamailio-6.0.1/debian/patches/series 2025-03-11 14:38:30.000000000 +0100
+++ kamailio-6.0.1/debian/patches/series 2025-08-28 12:54:46.000000000 +0200
@@ -3,3 +3,4 @@
no_INSTALL_file.patch
fix_export.patch
stop-setting-march-on-arm.patch
+Check-only-major-OpenSSL-version.patch
Reply to: