diff --git a/libs/sofia-sip/configure b/libs/sofia-sip/configure index a72bdc6479..0046851089 100755 --- a/libs/sofia-sip/configure +++ b/libs/sofia-sip/configure @@ -20453,7 +20453,7 @@ cat >>conftest.$ac_ext <<_ACEOF int main () { -char *s = __func__; +const char *s = __func__; ; return 0; @@ -26933,7 +26933,7 @@ cat >>conftest.$ac_ext <<_ACEOF int main () { -char *s = __func__; +const char *s = __func__; ; return 0; diff --git a/libs/sofia-sip/m4/sac-general.m4 b/libs/sofia-sip/m4/sac-general.m4 index 87eeda6133..b7acadb6ff 100644 --- a/libs/sofia-sip/m4/sac-general.m4 +++ b/libs/sofia-sip/m4/sac-general.m4 @@ -276,7 +276,7 @@ dnl ====================================================================== AC_DEFUN([AC_C_VAR_FUNC], [AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK(whether $CC recognizes __func__, ac_cv_c_var_func, -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[char *s = __func__; +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[const char *s = __func__; ]])],[ac_cv_c_var_func=yes],[ac_cv_c_var_func=no])) if test $ac_cv_c_var_func = "yes"; then AC_DEFINE([HAVE_FUNC], 1, [Define to 1 if the C compiler supports __func__])