From: Mike Jerris Date: Tue, 4 Aug 2020 17:16:50 +0000 (-0400) Subject: [build] detect system installed sofia-sip using PKG_CONFIG_PATH X-Git-Tag: v1.10.4^2~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F772%2Fhead;p=thirdparty%2Ffreeswitch.git [build] detect system installed sofia-sip using PKG_CONFIG_PATH --- diff --git a/libs/unimrcp/build/acmacros/sofia-sip.m4 b/libs/unimrcp/build/acmacros/sofia-sip.m4 index 1d83eacf79..ef1dfcb8d9 100644 --- a/libs/unimrcp/build/acmacros/sofia-sip.m4 +++ b/libs/unimrcp/build/acmacros/sofia-sip.m4 @@ -29,6 +29,12 @@ AC_DEFUN([UNIMRCP_CHECK_SOFIA], fi done + dnl Check for installed Sofia-SIP in PKG_CONFIG_PATH + if test "$found_sofia" != "yes" && $PKG_CONFIG sofia-sip-ua > /dev/null 2>&1 ; then + found_sofia="yes" + sofia_config_path="sofia-sip-ua" + fi + dnl Check for full path to Sofia-SIP pkg-config file if test "$found_sofia" != "yes" && test -f "$sofia_path" && $PKG_CONFIG $sofia_path > /dev/null 2>&1 ; then found_sofia="yes"