--- /dev/null
+From 43f41d153f8034288083a440b1569d63f431f1b9 Mon Sep 17 00:00:00 2001
+Date: Tue, 10 Jun 2025 23:49:48 +0300
+Subject: [PATCH] Fix incompatible pointer type in sip_basic.c (#249)
+
+Closes #248
+---
+ libsofia-sip-ua/sip/sip_basic.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/libsofia-sip-ua/sip/sip_basic.c
++++ b/libsofia-sip-ua/sip/sip_basic.c
+@@ -2901,7 +2901,7 @@ issize_t sip_identity_d(su_home_t *home,
+ ext = strchr(ppt, ';');
+
+ if (ext) {
+- msg_param_t *params = su_alloc(home, sizeof(msg_param_t));
++ msg_param_t const *params = su_alloc(home, sizeof(msg_param_t));
+ if (msg_params_d(home, &ext, ¶ms) >= 0) {
+ id->id_info_params = params;
+ }
+++ /dev/null
---- a/configure.ac
-+++ b/configure.ac
-@@ -247,7 +247,7 @@ SAC_OPENSSL
- SAC_TPORT
-
- dnl Check is used for testing
--PKG_CHECK_MODULES(CHECK, check >= 0.9.4, have_check="yes", have_check="no")
-+PKG_CHECK_MODULES(CHECK, we_do_not_want_check >= 0.9.4, have_check="yes", have_check="no")
- AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
- if test x"$have_check" = "xyes"; then
- AC_DEFINE([HAVE_CHECK], 1, [Define to 1 if check library is available])
--- /dev/null
+--- a/configure.ac
++++ b/configure.ac
+@@ -247,7 +247,7 @@ SAC_OPENSSL
+ SAC_TPORT
+
+ dnl Check is used for testing
+-PKG_CHECK_MODULES(CHECK, check >= 0.9.4, have_check="yes", have_check="no")
++PKG_CHECK_MODULES(CHECK, we_do_not_want_check >= 0.9.4, have_check="yes", have_check="no")
+ AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
+ if test x"$have_check" = "xyes"; then
+ AC_DEFINE([HAVE_CHECK], 1, [Define to 1 if check library is available])