Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
ecf71eea
Commit
ecf71eea
authored
Sep 15, 2005
by
Pekka Pessi
Browse files
Added --with-sigcomp to tport.
darcs-hash:20050915065625-65a35-888533e79cdad62169499e2dde180ce78ea76810.gz
parent
7caff3f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
m4/sac-tport.m4
m4/sac-tport.m4
+21
-0
No files found.
m4/sac-tport.m4
View file @
ecf71eea
...
...
@@ -2,6 +2,27 @@ dnl ======================================================================
dnl SAC_TPORT - perform checks for tport
dnl ======================================================================
AC_DEFUN([SAC_TPORT], [
AC_ARG_WITH(sigcomp,
[ --with-sigcomp=dir use Sofia SigComp package (not used by default)],,
with_sigcomp=no)
if test -n "${with_sigcomp}" ; then
if test "${with_sigcomp}" != yes ; then
CPPFLAGS="-I${with_sigcomp}/include $CPPFLAGS"
LIBS="-L${with_sigcomp}/lib -lsigcomp $LIBS"
else
LIBS="-lsigcomp $LIBS"
fi
AC_CHECK_HEADERS(sigcomp.h,,AC_MSG_ERROR([cannot find Sofia SigComp includes]))
AC_CHECK_FUNC(sigcomp_library_2_5,
[AC_DEFINE([HAVE_SIGCOMP], 1, [Define this as 1 if you have Sofia sigcomp >= 2.5])
AC_DEFINE([HAVE_SOFIA_SIGCOMP], 2.5, [Define this as 1 if you have Sofia sigcomp >= 2.5])],
AC_MSG_ERROR(Sofia SigComp API >= 2.5 was not found))
fi
# Check for features used by tport.
AC_SYS_IP_RECVERR
AC_SYS_IPV6_RECVERR
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment